首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java相关 >

java调用exe资料

2013-03-10 
java调用exe文件import java.io.IOExceptionpublic class Te {/** * @param args * @throws IOException*

java调用exe文件

import java.io.IOException;


public class Te {

/**
 * @param args
 * @throws IOException 
 * @throws IOException 
 * @throws InterruptedException 
 */
public static void main(String[] args) throws IOException, InterruptedException {
// TODO Auto-generated method stub
Process process = Runtime.getRuntime().exec("D:/1.exe"); 
process.waitFor( );
}
}

为什么调用1.exe的时候程序会卡到那里
[解决办法]
改为Process process = Runtime.getRuntime().exec("cmd /c start D:/1.exe");试试呢

热点排行