我正在尝试运行xmlBeans的示例来编译xsd并创建一个与之对应的jar但是我再次收到此错误&再次
java.io.Exception: Cannot run program "filelocation\javac": CreateProcess error=2, The system cannot find the file specified
at java.lang.ProcessBuilder.start
............
它可能与我的“path”或“classpath”环境变量有关。请提出建议。
答案 0 :(得分:1)
我找到了问题的解决方案
我正在使用命令
scomp -out automobile-policy.jar automobile-policy.xsd
但是路径变量中的javac位置存在一些问题我想
所以我给了这个命令
scomp -compiler“c:\ Program Files \ Java \ jdk1.6 \ bin \ javac.exe”-out car-policy.jar automobile-policy.xsd
并在该位置给出了所需的汽车政策。
请注意,javac.exe的位置可能不同。