java中jtextarea设置位置
时间: 2023-04-17 09:01:00 浏览: 213
java swing-JTextArea的使用
5星 · 资源好评率100%
在Java中,可以使用setBounds()方法来设置JTextArea的位置。该方法需要四个参数,分别是x坐标、y坐标、宽度和高度。例如,以下代码将JTextArea放置在(50,50)的位置,宽度为200,高度为100:
JTextArea textArea = new JTextArea();
textArea.setBounds(50, 50,
阅读全文