《如何用Java构建一个类似于Windows资源管理器的用户界面?》

发布于 2024-09-12 05:15:32 字数 56 浏览 7 评论 0 原文

我需要开发一个类似于Windows资源管理器的Java UI。 界面应该具有图标和拖放功能等内容。

I need develop a Java UI similar to windows explorer.
The interface should have itens like icons and drag'n drop feature.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

ぽ尐不点ル 2024-09-19 05:15:33

这些事情在 Java 中都是可能的,但是你的问题对于具体的答案来说太模糊了。您必须学习 UI 工具包,例如 AWT、Swing、SWT 等。该工具包将提供您可以构建此类 UI 的组件。如果您使用您最喜欢的搜索引擎进行一些研究,您甚至可能会找到预先构建的系统。

SO 是您在学习 UI 工具包时可以提出需要特定答案的特定问题的地方。

These things are all possible in Java, but your question is much too vague for a specific answer. You will have to learn a UI toolkit such as AWT, Swing, SWT, etc. The toolkit will provide components from which you can build such a UI. You will probably even find pre-built systems if you do a little research with your favorite search engine.

SO is a place where you can ask specific questions that need specific answers while you are learning the UI toolkit(s).

酷到爆炸 2024-09-19 05:15:33

也许你应该谷歌“Java外观和感觉”这里有一个可以帮助你的链接:http://download-llnw.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html

maybe you should google "Java look and feel" here is a link that can help you: http://download-llnw.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html

香橙ぽ 2024-09-19 05:15:33

作为起点,您可能需要查看 javax.swing.JFileChooser。 JFileChooser 类生成您正在寻找的大部分内容,尽管它是为“打开文件”和“保存文件”对话框而不是资源管理器窗口之类的内容而设计的。

JFileChooser 的源代码可在 Sun 的 JDK 发行版中找到,或者您也可以 网上找到它

As a starting point, you may want to look at the source code for javax.swing.JFileChooser. The JFileChooser class produces much of what you're looking for, though it's designed for things like "open file(s)" and "save file" dialogs, rather than an explorer window.

The source for JFileChooser is available in the JDK distribution from Sun, or you can find it online.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文