我编写了一个简单的 Java 程序,它每 5 秒向 std 输出一些“hello”。
public class DDD {
public static void main(String[] args) throws InterruptedException {
for (int i = 0; ; i++) {
System.out.println("hello " + i);
Thread.sleep(5000);
}
}
}
然后我编译它并得到一个.class。
我编写了另一个 java 程序来运行它并获得输出:
public static void main(String[] args) throws Exception {
String command = "c:\\java\\jdk1.7.0_07\\bin\\java mytest.DDD";
Process exec = Runtime.getRuntime().exec(command);
BufferedReader reader = new BufferedReader(new InputStreamReader(exec.getInputStream()));
while (true) {
String line = reader.readLine();
System.out.println(line);
if (line == null) {
Thread.sleep(1000);
}
}
}
但它总是打印:
null
null
null
null
null
null
null
哪里错了?我的操作系统是“Windows XP”。