如何使用 Java AWT 显示信息?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想建议 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.