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左上隅からテキストを右に表示するを持っています。4辺すべてに余裕を持たせたいので、テキストと領域の境界の間にいくらかのスペースがあります。
JTextArea
私は多くのことを研究しましたが、解決策を見つけることができませんでした。どうすればいいですか?
また、ダミーの余白を作るために、4面すべてにラベルを貼っておくのではないかと考えていました。JLabel特定の幅と高さのを作成するにはどうすればよいですか?
JLabel
私はあなたの質問を正しく理解していないのかもしれません。ただし、setMargin()を使用できます
// set the margin for all four sides tt.setMargin( new Insets(10,10,10,10) ); // tt is JTextArea instance
いくつかの重要なリンク
1. setMargin API
2.クラスインセット