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.
嗨,我想获取文档的路径,我想使用jfilechooser但jfilechooser获取文件路径,但我想要文档路径,我该怎么办?
jfilechooser
你真的应该先用谷歌搜索一下。这就是我为了找到这个所做的一切:
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); chooser.setAcceptAllFileFilterUsed(false);
然后运行文件选择器,并使用它来获取目录位置。
String dir = chooser.getCurrentDirectory();
你可以在谷歌上找到这个。下一次,在这里问你的问题之前,至少环顾四周 15 分钟。