您好我正在尝试使用 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");
}