我已在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);
答案 0 :(得分:1)
你忘记了方法
setBounds(x,y,width,height);
实际上setBounds
可以分为两种方法
setSize(w,h);
setLocation(x,y);