关于Runtime.exec的问题(50分)

  • 主题发起人 主题发起人 sandboy
  • 开始时间 开始时间
S

sandboy

Unregistered / Unconfirmed
GUEST, unregistred user!
请问,怎么使用Runtime的exec(String[], String[])方法啊?
我怎么试都出不来。
public class Test {
public static void main(String[] args) throws IOException{
String[] str = new String[1];
String[] env = new String[1];
str[0] = "ps";
env[0] = "ef";
Runtime rt = Runtime.getRuntime();
try {
rt.exec(str, env);
System.out.println("OK");
}
catch (IOException e) {
System.out.println("error");
}
}
}
OK能显示,但就是显示不出ps -ef的内容。
 
http://www.delphibbs.com/delphibbs/dispq.asp?lid=883876
 
3ku, i know.
 
后退
顶部