我以前编写PHP代码来执行pig命令,效果很好, 现在我切换到Java,但似乎它不起作用,这是我的代码:
String pigCommand = "pig -x local -p ouput=/tmp my_pig_script.pig";
Runtime r = Runtime.getRuntime();
Process p;
int exitVal;
try {
p = r.exec(pigCommand);
exitVal = p.waitFor();
BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = null;
while((line = br.readLine()) != null) {
System.out.println(line);
}
br.close();
System.out.println("exitVal: " + exitVal);
System.out.println("Done");
如果我直接在控制台中运行那个pig命令,它会起作用,如果我更换的话 Pig命令与其他shell命令说'ping www.yahoo.com',然后运行 java程序,它也适用。那可能是什么问题呢?感谢