如何使用 Java AWT 显示信息?

发布于 2024-09-08 15:16:59 字数 280 浏览 5 评论 0原文

我使用 servlet、MySQL 和 Tomcat 开发了一个应用程序。我被要求创建一个不需要使用服务器的应用程序版本。

我进行了研究,我认为我需要的是创建窗口,在其中可以向用户显示信息并从用户检索信息。

我已经学会了如何使用Java AWT构建窗口,以及如何添加按钮、列表......我不知道如何向用户显示存储在MySQL中的信息。

如果用户想要可视化数据库表之一的内容,我应该在窗口中显示一个表,显示表的不同行和列。

我该如何使用 AWT 来做到这一点?

谢谢

I've developed an application using servlets, MySQL and Tomcat. I've been asked to create a version of this application that does not require the use of a server.

I've researching and I think that what I need is to create windows where I can show information to the user and to retrieve information from the users.

I've learned how to build windows by using Java AWT, and how to add buttons, lists... What I don't know how to do is to show the information stored in MySQL to the user.

If the user wants to visualice the content of one of the tables of the database I should show in the window a table showing the different rows and columns of the table.

How could I do it using AWT?

Thanks

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

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

发布评论

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

评论(1

鹊巢 2024-09-15 15:16:59

我想建议 JFC/Swing。 Swing 工具包包含一组丰富的组件,用于构建 GUI 和向 Java 应用程序添加交互性。查看 JTable 组件。使用 JTable 您可以显示数据表。

I'd like to suggest JFC/Swing. The Swing toolkit includes a rich set of components for building GUIs and adding interactivity to Java applications. Take a look at JTable component. Using JTable you can display tables of data.

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