标签: java swing jtextfield
我有一个JTextField,它会切断我的输入,使句子超越边界而不是 每5个字左右开始一个新行。我曾经尝试过这个,它适用于JLabel而不适用于JtextField:
String html1 = "<html><body style='width: "; String html2 = "px'>"; labell.setText(html1+"300"+html2+content);
答案 0 :(得分:4)
请参阅How to Use Text Areas
您可能还想看看
JTextArea#setLineWrap
JTextArea#setWrapStyleWord
JTextArea#setRows
JTextArea#setColumns