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.
我正在使用 Java Swing 开发一个小型应用程序。它由 2 个文本区域组成。在一个文本区域中键入文本时,我希望将相同的文本复制到其他文本区域。我使用了线程:Jframe 的线程 1 和访问文本和setText其他文本区域的线程 2 .. 但没有显示文本。
setText
您是否使用任何动作侦听器来检测用户何时在文本框中键入?
我希望将相同的文本复制到其他文本区域
分享文件:
JTextArea textArea1 = new JTextArea(); JTextArea textArea2 = new JTextArea(); textArea2.setDocument( textArea1.getDocument() );