嗨我試圖用java程序打開word文件。該計劃給了我下面的錯誤」在Java中使用默認程序打開文件的問題
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");
}
它工作。感謝束 – Pavel 2012-08-12 23:44:21
很高興有一個簡單的問題,以改變;)很高興成爲協助 – MadProgrammer 2012-08-12 23:47:05