浏览文件夹对话框
我需要知道如何在java中获取“浏览文件夹”对话框。我知道 SWT。但我需要在摇摆中做什么?有什么办法解决这个问题吗?
[当我们启动 Eclipse 时,它会要求选择工作空间。此时我们可以看到浏览文件夹对话框] 提前致谢。
I need to know how to get the "browse for folder" dialog in java. I am aware of SWT. But I need to do in swing? Is there any solution to this?
[As we start on eclipse it will ask for choose workspace. We can see the browse for folder dialog at that time]
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果添加以下命令,您可以强制 JFileChooser 仅选择文件夹。
在 Bibhaw 发布的片段中。
You can force JFileChooser to select only folders, if you add the following command.
in the snippet that Bibhaw posted.
预先咀嚼的代码:
Pre-chewed code:
使用 JFIleChooser。
例如,
有关详细信息,请浏览:
http://leepoint.net/notes- java/GUI/containers/20dialogs/30filechooser.html
http: //download.oracle.com/javase/tutorial/uiswing/components/filechooser.html
Use JFIleChooser.
e.g.
for details please go through:
http://leepoint.net/notes-java/GUI/containers/20dialogs/30filechooser.html
http://download.oracle.com/javase/tutorial/uiswing/components/filechooser.html