gpt4 book ai didi

java - JFileChooser 和 eclipse

转载 作者:行者123 更新时间:2023-12-01 18:56:37 25 4
gpt4 key购买 nike

我正在寻找一种方法,让 JFileChooser 允许用户仅从 eclipse 项目的 bin 文件中包含的 txt 文件中进行选择。有没有办法让 JFileChooser 弹出并显示 bin 文件夹中选定数量的 txt 文件?

最佳答案

您可以引用以下代码,只需指定文件夹/目录的绝对或相对路径

JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter(
"TXT files", "txt");
chooser.setFileFilter(filter);
chooser.setCurrentDirectory("<YOUR DIR COMES HERE>");
int returnVal = chooser.showOpenDialog(parent);
if(returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: " +
chooser.getSelectedFile().getName());
}

JFileChooser

关于java - JFileChooser 和 eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13743601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com