我尝试使用Runtime.getRuntime.exec(命令)编译一些java文件并生成命令。下面的代码显示了我在做什么:
String command = "javac ";
for(String s: this.getPackages())
{
command = command + "/home/benuni/CompileFiles/" + project + "/" + s + "/*.java ";
}
try {
System.out.println("command: '"+ command +"'");
Process pro = Runtime.getRuntime().exec(command);
printLines(" stderr:", pro.getErrorStream());
pro.waitFor();
这提供了以下输出:
command: 'javac /home/benuni/CompileFiles/HelloWorldProject/HelloWorldPackage/*.java '
stderr: javac: file not found: /home/benuni/CompileFiles/HelloWorldProject/HelloWorldPackage/*.java
stderr: Usage: javac <options> <source files>
stderr: use -help for a list of possible options
并且它不起作用..但如果我将命令复制到我的shell中,它没有问题......任何想法?
答案 0 :(得分:4)
Java不会为您扩展*
通配符。这是shell的设施。相反,您需要列出目录以获取所有包含的文件。
这样的事情可以帮助我建立你的命令:
File[] files = new File("/home/benuni/CompileFiles/" + project + "/" + s).listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.endsWith(".java");
}
});
StringBuilder command = new StringBuilder("javac");
for(File file : files) {
command.append(" ").append(file.getAbsolutePath());
}
答案 1 :(得分:2)
当您从命令行进入时,命令分析器会将*
扩展为文件列表。当您使用Runtime.exec时,不会发生扩展,并且您必须明确指定整个列表。
答案 2 :(得分:1)
一个选项是向javac提供实际的文件名列表。另一种方法是使用命令
让shell执行它/bin/sh -c javac /home/benuni/CompileFiles/HelloWorldProject/HelloWorldPackage/*.java