我想从我下面的程序运行一个shell脚本,但它似乎并没有做任何事情。 我直接在Linux终端运行相同的命令,它工作得很好,所以我猜这是我的Java代码。 正如你所看到的,我第一次写命令shell脚本利用一个PrintWriter,但我希望这不会影响shell脚本本身的运行。 任何帮助,将不胜感激!
public static void main(String[] args) {
// TODO Auto-generated method stub
String nfdump = "nfdump -o csv -r /home/shane/Documents/nfdump/nfcapd.201211211526>blank.txt";
try {
FileWriter fw = new FileWriter("/home/shane/Documents/script.sh");
PrintWriter pw = new PrintWriter(fw);
pw.println("#!/bin/bash");
pw.println(nfdump);
pw.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Process proc = null;
try {
proc = Runtime.getRuntime().exec("sh /home/shane/Documents/script.sh");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}