标签:
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();
}
}
标签:
原文地址:http://www.cnblogs.com/douyunqian3520/p/5521596.html