我在必须执行的共享文件夹中有一个 java 文件。我尝试使用以下执行
set JAVA_HOME=\\[servername]\[sharedfolder]\j2sdk\jdk1.5.0_04
set CLASSPATH= "the directory with the classes"
%JAVA_HOME%/bin/javaw -cp "%CLASSPATH%" [name of the class with the main method]
但是当我给 javac 时,它说 javac 不是可识别的命令或参数。有没有其他方法可以在共享文件夹中执行 java 文件?
提前谢谢你的帮助。