setelah membuat java project maka kita akan membuat kelas, seperti gambar dibawah ini dengan cara klik File --> New --> Class maka akan muncul tampilan seperti gambar dibawah ini :
Berikut ini code untuk membuka sebuah file pada java
/**
*
* @author adi nuralim
*/ public class OpenFile {
public void openFile(String path) {
try {
Desktop desktop = null;
if (Desktop.isDesktopSupported()) {
desktop = Desktop.getDesktop();
}
File f = new File(path);
if (f.exists()) {
desktop.open(f);
} else {
System.out.println("file tidak ditemukan");
}
} catch (IOException ioe) {
System.out.println("error open");
}
}
public static void main(String[] args) {
String DATA_PATH = System.getProperty("user.home") + System.getProperty("file.separator") + "open.xlsx" ;
OpenFile openFile= new OpenFile();
openFile.openFile(DATA_PATH);
}
}
Screenshot Code :
Kemudian Run Program as Java application dengan cara klik tombol icon "play" warna hijau maka akan keluar output seperti gambar dibawah ini :
Sumber : http://adicodes.blogspot.com/
Tidak ada komentar:
Posting Komentar