簡単に微調整するためにテキストファイルを開くためのこのボタンがあります。テキストファイルを同じディレクトリに置くと正常に動作しますが、サブディレクトリに配置してパスを「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");
}
}
});