用MyEclipse 8.5编写一个应用程序的时候,在运行这个应用程序的时候,怎么样运行添加到该窗体里面的插件?
发布网友
发布时间:2023-04-28 17:27
我来回答
共1个回答
热心网友
时间:2023-10-29 09:14
你指的是调用exe程序吗 如果是的话
public class transferExe {
public static void main(String[] args) {
openWinExe();
openExe();
}
//用 Java 调用windows系统的exe文件,比如notepad,calc之类
public static void openWinExe() {
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
String command = "notepad";
p = rn.exec(command);
} catch (Exception e) {
System.out.println("Error win exec!");
}
}
//调用其他的可执行文件,例如:自己制作的exe,或是 下载 安装的软件.
public static void openExe() {
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
p = rn.exec("\"D:/QQ2010.exe\"");
} catch (Exception e) {
System.out.println("Error exec!");
}
}
}
热心网友
时间:2023-10-29 09:14
你指的是调用exe程序吗 如果是的话
public class transferExe {
public static void main(String[] args) {
openWinExe();
openExe();
}
//用 Java 调用windows系统的exe文件,比如notepad,calc之类
public static void openWinExe() {
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
String command = "notepad";
p = rn.exec(command);
} catch (Exception e) {
System.out.println("Error win exec!");
}
}
//调用其他的可执行文件,例如:自己制作的exe,或是 下载 安装的软件.
public static void openExe() {
Runtime rn = Runtime.getRuntime();
Process p = null;
try {
p = rn.exec("\"D:/QQ2010.exe\"");
} catch (Exception e) {
System.out.println("Error exec!");
}
}
}