用java開啟電腦上的檔案

這是一個祕密發表於2017-08-18

匯入

import java.awt.Desktop;

import java.io.File;
import java.io.IOException;

程式碼

String path=" 檔案路徑及名稱,例:D://test.txt";

if(Desktop.isDesktopSupported()&&Desktop.getDesktop().isSupported(Desktop.Action.OPEN)){

File file = new File(path);
if(file.exists()){
try {

Desktop.getDesktop().open(file);

//開啟成功

} catch (Exception e) {
//開啟開啟失敗
}
}else{
//無檔案"
}
}

相關文章