1. 程式人生 > >檔案選擇元件JFileChooser

檔案選擇元件JFileChooser

1.建立

JFileChooser jfc1 = new JFileChooser();

2.設定名字

jfc1.setDialogTitle("請選擇檔案....");

3.初始化

(1)開啟選擇本地的檔案

jfc1.showOpenDialog(null);
//顯示
jfc1.setVisible(true);

(2)把檔案儲存到本地

jfc.showSaveDialog(null);
jfc.setVisible(true);

4.得到檔案路徑

//得到使用者希望把檔案儲存到何處,檔案的全路徑
String file = jfc.getSelectedFile().getAbsolutePath();