我想在单独的命令窗口中开始执行新线程而不影响主线程的执行。
我有这样的事情:
public static void main(String args[]){
NewThread n = new NewThread();
Thread t = new Thread(n);
t.start(); //Here I want to display the execution of t in separate command prompt.
}
class NewThread implements Runnable{
public void run(){
//....
}
}
我可以使用 Runtime.getRuntime().exec() 吗?请帮助..谢谢。