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.
私はJavaSwingを使用して小さなアプリケーションを開発しています。2つのテキストエリアで構成されています。1つのテキストエリアにテキストを入力しているときに、同じテキストを他のテキストエリアにコピーしたいと思います。私はスレッドを使用しました:テキストおよびsetText他のテキストエリアにアクセスするJframeおよびthread2のthread1 ..しかし、テキストは表示されません。
setText
ユーザーがテキストボックスに入力したことを検出するためにアクションリスナーを使用しましたか?
同じテキストを他のテキストエリアにコピーしたい
ドキュメントを共有する:
JTextArea textArea1 = new JTextArea(); JTextArea textArea2 = new JTextArea(); textArea2.setDocument( textArea1.getDocument() );