JAVA 如何设置文本域显示的默认字

2024-11-18 06:03:52
推荐回答(3个)
回答1:

  JTextArea有一个public JTextArea(String text, int rows, int columns)的构造函数,text就可以表示默认文字,rows表示行数,colums表示列数。也可以在显示之前调用 public void setText(String t)方法设置。例如像下面这样:

public class WinTest7
{
    public static void main(String[] args)
    {
        JFrame frame = new JFrame();
        JTextArea area = new JTextArea("welcom to textarea!",40,50);
        area.setText("this is new default String");
        frame.add(area);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
        frame.setLayout(new FlowLayout());
        frame.setVisible(true);
    }
}

回答2:

ta.setText("显示的字写在这") ;

回答3:

TextArea ta = new TextArea("文本的内容",6,40);