こんにちは、Java プログラムを使用して Word ファイルを開こうとしています。プログラムで次のエラーが表示されます。」
Cannot make a static reference to the non-static method open(File) from the type Desktop
これを修正する方法がわかりません。手伝ってくれませんか。ありがとう。以下はコードのスニペットです。
@Override
public void actionPerformed(ActionEvent e) {
List<File> files;
File startingDirectory = new File("C:/Hello/");
try {
files = getFileListing(startingDirectory);
for (File file : files){
Desktop.open(file);
}
} catch (FileNotFoundException ex) {
System.out.println("File Not Found");
}