我有这个按钮,用于打开一个文本文件以便于调整。当我将文本文件放在同一目录中时它工作正常,但是当我尝试将它放在子目录中并将路径更改为“config/gameItems.txt”时它什么也没做,甚至没有告诉我它可以'找不到文件。有什么想法吗?
JButton itemsButton = new JButton("Items");
//Add action listener to button
itemsButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
//Execute when button is pressed
try {
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + "config/gameItems.txt");
} catch (Exception a) {
System.out.println("File not found");
}
}
});