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.
これはおそらく非常に初歩的な質問です。たとえば、JTextAreaがあります。
JTextArea area = new JTextArea();
このテキスト領域に長いテキストを挿入することがあります (たとえば、コピーと貼り付けの方法を使用)。この領域はユーザー入力用です。
問題は、このコンポーネントのサイズを調整するのではなく、テキストが 1 つの長い行にのみ挿入されることです。これを修正する簡単な方法はありますか?
チェックアウト...
JTextArea#setLineWrap
JTextArea#setWrapStyleWord
そして、テキストエリアの使い方が役立つかもしれません。