Skip to content
Snippets Groups Projects
Commit 93c5c8e5 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

First experiments to see how the problem can be solved

parent 7895518a
No related branches found
No related tags found
No related merge requests found
package teetime.framework;
import java.io.IOException;
import java.util.StringTokenizer;
public class FileSearcher {
public static void main(final String[] args) throws IOException {
final String classpath = System.getProperty("java.class.path");
final String pathSeparator = System.getProperty("path.separator");
// System.out.println(classpath);
// System.out.println(pathSeparator);
StringTokenizer st = new StringTokenizer(classpath, pathSeparator);
while (st.hasMoreTokens()) {
System.out.println(st.nextToken());// st.nextToken());
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment