Java中的Repaint和paintComponent()

发布于 2024-12-29 20:45:30 字数 182 浏览 1 评论 0原文

我正在从传感器连续读取数据,并希望使用该数据绘制图表。我已经创建了该图表,但是,系统仅在第一次读取时绘制该图表,不会动态更改绘图。

我使用了paintComponent(),并尝试使用重绘来更新它。我发现虽然数据不断更新,但程序执行paintComponent()的次数不会超过一次。

任何解决该问题的建议将不胜感激。

I am reading data continuously from a sensor and want to plot chart using that data. I already create that chart, however, system draws that chart for only the first reading, doesn't change the plot dynamically.

I used paintComponent() and I try to update that by using repaint. I have found that though data updates continuously, but the program doesn't execute paintComponent() for more than one time.

any suggestion to solve that problem would be highly appreciated.

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

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

发布评论

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

评论(1

愁以何悠 2025-01-05 20:45:30

尝试

validate()revalidate()

,然后

调用 repaint()

希望这会有所帮助。

有用的链接:http://docs.oracle。 com/javase/6/docs/api/javax/swing/JComponent.html#revalidate()

Try

validate() or revalidate()

and then,

call repaint()

Hope this will help.

Helpful Link : http://docs.oracle.com/javase/6/docs/api/javax/swing/JComponent.html#revalidate()

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