从Java应用程序打开文件选择窗口

时间:2012-02-17 16:33:22

标签: java file window selection

如何让我的java应用程序打开其中一个花哨的文件选择窗口? 如果您知道,请告诉我如何使用Mac和PC;这对我很有帮助。 我搜索了谷歌和StackOverflow,以及其他一些网站,但只是无法找到我想要的东西。顺便说一下,我在Java上还是一个菜鸟,所以我不介意你解释一下你的代码对我的影响:P

3 个答案:

答案 0 :(得分:10)

使用FileChooser

JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(frame); //Where frame is the parent component

File file = null;
if (returnVal == JFileChooser.APPROVE_OPTION) {
    file = fc.getSelectedFile();
    //Now you have your file to do whatever you want to do
} else {
    //User did not choose a valid file
}

有关详细信息,请查看How to Use File Chooser

答案 1 :(得分:7)

查看JFileChooser。这是官方tutorial。如果您有具体的后续问题,请询问。

答案 2 :(得分:3)

我相信您正在寻找JFileChooser