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.
JButton で、複数の行に情報をリストしたいと考えています。\n改行文字でやってみましたがだめでした。次のコード:
\n
JButton.setText("fnord\nfoo") ;
次のように表示されます。
fnordfoo
改行を強制するにはどうすればよいですか?
JButton は HTML を受け入れるため、改行を機能させるには次を使用します。
JButton.setText("<html>fnord<br />foo</html>");