java打开本地应用程序

首先需要创建一个进程,然后用该进程去打开本地应用程序,当然也可以调用cmd命令。


package main;

public class CallExe {
    public static void main(String[] args) {
        Runtime rt = Runtime.getRuntime();
        Process p = null;
        String fileLac = "";
        try {
            fileLac = "D:\\Program Files (x86)\\Notepad++\\notepad++.exe";// 要调用的程序路径
            p = rt.exec(fileLac);
        } catch (Exception e) {
            System.out.println("open failure");
        }
    }

}

你可能感兴趣的:(java)