为什么JFrame不会显示输出?

时间:2014-06-14 04:50:18

标签: java swing jframe

我已在applet中声明了JFrame。 JFrame似乎打开(我只能看到打开,关闭和最大化按钮),但没有显示输出。

 public class LaunchListener implements ActionListener
 {
     public void actionPerformed(ActionEvent event)
     {

          String input;
          int coInput;

          input = integerInput.getText();
          coInput = Integer.parseInt(input);

          JTextArea textArea = new JTextArea();
          JFrame frame=new JFrame("Add JTextArea into JFrame");

        if (convInput == 2)
        {
            String output = "Show output";

            frame.add(textArea);
            textArea.setText(output);
            frame.setVisible(true); 

1 个答案:

答案 0 :(得分:1)

你忘记了方法

setBounds(x,y,width,height);

实际上setBounds可以分为两种方法

setSize(w,h);

setLocation(x,y);