我有一个作为迷你项目创建的启动器,我正在尝试执行一个 jar 文件。我想出了如何执行一个exe。继承人的代码:
mineshaft.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String mhome = System.getProperty("user.home") + "";
try {
Runtime.getRuntime().exec("java -jar .mhome+ \\AppData\\Roaming\\.minecraft\\minecraft.exe");
}
catch (Exception a) {
}
}
});
我到处搜索,每个人都说这段代码有效,但它不适合我。有什么建议么?