我是编码的新手。我正在寻找一个按钮。
按钮是什么意思?
当您点击按钮时,它将运行程序.jar
感谢您的帮助!
马克西姆
JButton btnNewButton = new JButton("Play!");
btnNewButton.setToolTipText("SpawnScape.jar");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Desktop.getDesktop();
try {
Process proc = Runtime.getRuntime().exec("java -jar Spawn.jar");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
答案 0 :(得分:0)
这不起作用,因为您没有指定Spawn.jar的正确路径 将你的jar文件放在C盘中,如果你在windows中就试试这样的事情,
Process proc = Runtime.getRuntime().exec("java -jar C:\Spawn.jar");