gpt4 book ai didi

java - Swing 中的 JTextArea 问题

转载 作者:行者123 更新时间:2023-12-01 16:36:04 26 4
gpt4 key购买 nike

我在更新文本区域时遇到问题。

我在gui.java中声明textArea:

JTextArea textArea;

我启动 GUI..

public void startGUI() {
// These are all essential GUI pieces
JLabel jLabInstruction, jLaberror;
JLabel copyright = new JLabel("");
JTextField uI = new JTextField("");
JTextArea textArea = new JTextArea("");
JButton jbtnSubmit;

final JFrame jfrm = new JFrame("app name!");
jfrm.setLayout(new FlowLayout());
jfrm.setSize(300, 300);
jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
textArea = new JTextArea(5, 20);
textArea.setEditable(false);
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
jLabInstruction = new JLabel("SYSTEM: Please type in a command: ");
jbtnSubmit = new JButton("Submit");
jLaberror = new JLabel("");
textArea.setMargin(new Insets(10,10,10,10));

jfrm.add(jLaberror);
jfrm.add(textArea);
jfrm.add(jLabInstruction);
jfrm.add(uI);
jfrm.add(jbtnSubmit);
jfrm.add(new JSeparator(SwingConstants.HORIZONTAL));
jfrm.add(copyright);
jfrm.setVisible(true);
}

我有一个方法可以写入上面的textArea:

public void writeToTextArea(String userInputText) {
textArea.append("\nSYSTEM: "
+ userInputText);
}

此外,在 tasks.java 中,我可以调用最后一个方法:

gui.writeToTextArea("PROGRAM STARTED!");

我的问题是文本区域字段没有更新。没有输入任何内容。我认为这是因为它找不到 textArea 是什么。我得到一个:

Exception in thread "main" java.lang.NullPointerException 

最佳答案

您在 startGUI 函数中声明了另一个名为 textArea 的变量,该变量隐藏了类级别 textArea。这就是为什么当您稍后尝试在程序中写入文本区域时会收到 NPE。

JTextArea textArea;

public void startGUI() {
JLabel jLabInstruction, jLaberror;
JLabel copyright = new JLabel("");
JTextField uI = new JTextField("");
JTextArea textArea = new JTextArea(""); //<-- Your hiding your class variable here

// ... rest of your code
}

关于java - Swing 中的 JTextArea 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8981218/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com