如何使用java运行文件(如exe程序)?我已经搜索了如何打开文件(甚至在oracle文档上)无济于事。有没有课可以帮我这个?我试过了
try
{
Runtime rt = Runtime.getRuntime() ;
Process p => rt.exec("Program.exe") ;
InputStream in = p.getInputStream() ;
OutputStream out = p.getOutputStream ();
InputSream err = p.getErrorStream() ;
p.destroy() ;
}
catch(Exception exc)
{
}
但它不起作用
答案 0 :(得分:1)
试试这个
Runtime.getRuntime().exec("c:\\program files\\test\\test.exe", null, new File("c:\\program files\\test\\"));