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.
我在带有 Netbeans 7 的 javaswing 应用程序中使用 jTextArea。希望在输入的文本到达 jtextarea 末尾时自动创建新行。这意味着不会有水平滚动条。在创建新行之前不需要按下“输入”按钮
一个简单的插图就像使用word文档时一样。当用户到达文档每一行的末尾时,将创建一个新行。
任何建议。
您可以使用
textArea.setWrapStyleWord(true); textArea.setLineWrap(true);