Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个 jPanel 用作数据绘图查看器。这些面板可能有多个窗口查看相同的数据源,但是数据可能需要在点击特定的 jPanel 之前进行处理。
为了解决额外处理的问题,我正在考虑为每个 jPanel 使用一个 swing worker,并使用该线程来观察数据主体线程。
我提出的方法是正确的方法吗?
只要您在后台线程中执行长时间运行的任务,并在 Event Dispatch Thread 中修改 Swing 组件,您就可以了。