使用 Java Swing 的类似任务管理器的应用程序
我想知道如何开始使用 Java Swing 编写监控应用程序,例如 Windows 任务管理器。我关心的主要功能是带有随时间绘制的图表的网格。完成此任务我需要哪些功能? (例如:Java2D 等)。
I want to how know how to set about writing a monitoring app such as Windows task manager using Java Swing. The main feature I am concerned with is the grid with a graph which get drawn with time. What are the features that I need to accomplish this? (e.g.: Java2D etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JFreeChart 可以处理图形,如演示中所示,但您必须使用 ProcessBuilder 查询主机操作系统的概念的任务。
附录:有关示例,请参阅 演示。
JFreeChart can handle the graphing, as shown in the demo, but you'll have to use ProcessBuilder to query the host operating system for its notion of task.
Addendum: For an example, see the Memory Usage tab of the demo.