2015-09-27 46 views
0

如何製作一個可以打開文件夾選項並搜索.txt文件的按鈕。 我想通過打開的窗口插入路徑(例如:c:/documents)如果文件夾選項。所以我的應用程序的用戶只需點擊它,而不是在字段文本中輸入它。我使用netbeans作爲我的IDE的方式使用 。 請幫助我。謝謝。如何在java應用程序中打開一個文件夾窗口?我想在我的應用程序中插入文件.txt的路徑

+0

喜歡的東西https://docs.oracle.com/javase/8/docs/api/javax/swing/JFileChooser.html? – jjlema

回答

1

這可以使用JFileChooser完成。 Official Tutorial是最好的開始。

重要的步驟是:

JFileChooser fc = new JFileChooser(); 
int returnVal = fc.showOpenDialog(this); 
if (returnVal == JFileChooser.APPROVE_OPTION) { 
    File file = fc.getSelectedFile(); 
    //This is where a real application would open the file. 
    log.append("Opening: " + file.getName() + "." + newline); 
} else { 
    log.append("Open command cancelled by user." + newline); 
} 
相關問題