kta dapat memanggil nya sederhana dengan :
JFileChooser chooser=new JFileChooser();
chooser.showOpenDialog(null);
null yang berarti dia tidak punya parrent frame..
jadi dia berdiri sendiri klo biasanyakan this (this brrti frame instace dari JFrame)
secara default JFileChooser akan mangarahkan ke directory MyDocument
kita dapan mengarahkan directory yang kita inginkan
contoh:
JFileChooser chooser= new JFileChooser("C:/JavaPrograms/Ch12");
berarti saat chooser dibuka Directory yang pertama ditampilkan adalah Ch12
atau dapat ditulis dengan cara lain :
JFileChooser chooser=new JFileChooser();
File startDir = new File("C://JavaPrograms//Ch12");
chooser.setCurrentDirectory(startDir);
chooser.showOpenDialog(null);
Lalu bagaimana Cara mengatur event pada JFileChooser :
int status = chooser.showOpenDialog(null);
if (status == JFileChooser.APPROVE_OPTION) {
System.out.println("Open is clicked");
} else { //== JFileChooser.CANCEL_OPTION
System.out.println("Cancel is clicked");
}
kita dapat menulis kan peritah2 jika open diklik maupun cancel diklik
"Once we determine the Open button is clicked, we can retrieve the selected file as
File selectedFile;
selectedFile = chooser.getSelectedFile();
and the current directory of the selected file as
File currentDirectory;
currentDirectory = chooser.getCurrentDirectory();"
kita dapat mendapatkan nama file dan alamat file nya dari file yang kita pilih
File file = chooser.getSelectedFile();
System.out.println("Selected File: " + file.getName());
System.out.println("Full path: " +file.getAbsolutePath);
-hasta refrensi dari C._Thomas_Wu_A_Comprehensive_Introduction_to_Object-Oriented_Programming_with_Java____2008
0 komentar:
Post a Comment