Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图编写一部分代码来获取目录中的文件夹,然后使用这些文件夹的名称来填充 jlist,以便用户可以从他们想要的特定目录中的文件夹中选择哪个文件夹采用。有什么建议么?提前致谢。
要查找您可以使用的文件夹File.listFiles(),然后使用isDirectory(). 否则,但稍微复杂一点,您可以使用FileFilter.
File.listFiles()
isDirectory()
FileFilter
要填充它,您将文件名保存在一个数组中String[] data = {"one", "two", "three", "four"};,然后用它们创建 jlist JList dataList = new JList(data);。
String[] data = {"one", "two", "three", "four"};
JList dataList = new JList(data);