我有两个程序,我必须调用一个位于不同位置的程序,即调用程序在 d://start 中,被调用程序在 f://call 中。如何在java中做到这一点?
我可以在调用程序中使用这种方法来实现吗?
try
{
Process p = Runtime.getRuntime().exec(
new String[] {"cmd.exe", "/c", "F:/call.java"});
InputStream in = p.getInputStream();
OutputStream out = p.outputStream();
}
catch (IOException e)
{
e.printStackTrace();
}