Skip to content
Snippets Groups Projects
Commit 12d2890a 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 78fd48d5
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.
Finish editing this message first!
Please register or to comment