我正在尝试使用Runtime.exec执行 jstack 命令,但似乎有错误,但我找不到它。 另外,我可以在CMD中执行以下命令,它可以正常工作:
C:\ Users \ bob>“C:\ Program Files \ Java \ jdk1.6.0_18 \ bin \ jstack”5540> d:\ s.log
测试类全文:
package test;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Test {
public static void main(String[] args) {
try {
Process process = Runtime.getRuntime().exec("\"C:\\Program Files\\Java\\jdk1.6.0_18\\bin\\jstack\" 5540 > d:\\s.log");
BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = "";
while ((line = input.readLine()) != null) {
System.out.println(line);
}
int exitVal = process.waitFor();
System.out.println("Exited with code '" + exitVal + "'");
} catch (Exception e) {
System.out.println("Error.");
}
}
}
输出:
Usage:
jstack [-l] <pid>
(to connect to running process)
Options:
-l long listing. Prints additional information about locks
-h or -help to print this help message
Exited with code '1'
我该如何解决这个问题?
提前致谢。
答案 0 :(得分:0)
原因是输出重定向参数:> d:\\s.log
jstack实际上接收该位作为额外的参数,无法解析它,并打印出错误。
当您从类(Windows上的cmd.exe)调用相同的命令时,shell本身会识别重定向命令,将其从命令中删除,并且jstack仅“看到”pid参数。
你有2个选项来解决这个问题: