public class JTextAreaTest extends JFrame{
public JTextAreaTest()
{
setSize(200, 400);
setTitle("定义自动换行的文本域");
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
Container cp=getContentPane();
JTextArea jt=new JTextArea("文本域",6,6);
JScrollPane js=new JScrollPane(jt);
cp.add(js);
setVisible(true);
}
public static void main(String[] args) {
new JTextAreaTest();
}
}
时间: 2025-01-16 06:35:06