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

2024年11月18日 06:03
有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);