Using Java (1.4) is there a way in which to use Windows UNC file locations (\\servername\filestore\etc) within the classpath?
+1
A:
Basically you just need to swap the back slashes with forward slashes:
java -classpath '//servername/filestore/etc;.' <classname>
eqbridges
2009-05-05 17:11:11