jtextarea固定大小
时间: 2023-07-18 19:15:21 浏览: 95
固定textarea文本域尺寸
你可以通过设置JTextArea的大小和边框样式来固定它的大小,如下所示:
```
JTextArea textArea = new JTextArea();
textArea.setPreferredSize(new Dimension(300, 200)); // 设置大小
textArea.setBorder(BorderFactory.createLineBorder(Color.BLACK)); // 设置边框样式
```
这样就可以将JTextArea的大小固定为300x200,并且有一个黑色的边框。
阅读全文