gpt4 book ai didi

java - 如何使用 java 文件选择器在列表中添加项目

转载 作者:行者123 更新时间:2023-12-01 13:06:27 26 4
gpt4 key购买 nike

我正在使用 java 文件选择器从本地磁盘中选择一个文件并输出其名称和路径。有什么方法可以选择一个文件并将其添加到列表中吗?这是我的文件选择器代码。

JFileChooser chooser = new JFileChooser();
File F = new File("C:/");
File namedir;
File namepath;
chooser.setCurrentDirectory(F);
chooser.showOpenDialog(null);
chooser.setDialogTitle("Choose file ");
chooser.setApproveButtonText("View details");
namedir = chooser.getCurrentDirectory();
namepath = chooser.getSelectedFile();

JTextArea textarea = new JTextArea();
textarea.setEditable(false);
frame.add(textarea);

textarea.append("FILE LOCATION AND NAME:"+namepath);
System.out.print("the name of the the directory is "+namedir.getName());
System.out.print("the name of the the path is "+namepath.getAbsolutePath());

最佳答案

我会使用 JList。阅读 Swing 教程中关于 How to Use Lists 的部分了解更多信息和示例。

这个例子几乎正是你想要的。它向您展示了如何动态地将字符串添加到 JList 的 ListModel 中。

关于java - 如何使用 java 文件选择器在列表中添加项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23225227/

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