javaSwing文本域文件

时间:2023-03-08 22:43:11

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();
    }

}