所以我要做的是从另一个类编辑我的JLabel文本。我用label.setText(“bla bla”)来做;但它不会影响我的JLabel。
我在GUI类中的代码看起来像这样:
public class GUI {
JFrame f1 = new JFrame("GUI");
JLabel l1 = new JLabel("Output");
JTextField tf1 = new JTextField("");
public run(){ // main calls this method.
Listener listener = new Listener();
f1.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
f1.setBounds(450, 170, 400, 400);
f1.setVisible(true);
f1.setResizable(false);
f1.setLayout(null);
l1.setBounds(8, 8, 200, 30);
listener.listen(tf1);
f1.add(l1);
}
}
然后我有这个监听器类,它应该根据用户输入对JLabel进行更改。这是代码:
public class Listener {
GUI gui = new GUI();
public void listen(final JTextField textfield) {
textfield.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
test();
}
public void removeUpdate(DocumentEvent e) {
test();
}
public void insertUpdate(DocumentEvent e) {
test();
}
public void test() {
if (gui.everythingOK()) { // everythingOK is just a boolean that test if input is valid number and returns true if it is.
gui.l1.setText("No errors."); // this code is supposed to change JLabels text.
} else {
gui.l1.setText("Error."); // this code is supposed to change JLabels text.
}
}
});
}
}
方法everythingOK完美无缺,你只需要相信我。如果我将JLabel定义为静态,它可以工作,但它只能在第一次工作。在第一次更改后,JLabel中不再出现更改,因此将其定义为静态并没有帮助我。我希望有人知道这段代码有什么问题。并且不介意是否存在明显的错误,因为我只采用了非常长的代码中最重要的部分。
提前致谢。
这是我的所有OK代码:
public boolean everythingOK() {
if (hasInt(tf1) && isValid(tf1)) {
return true;
} else {
return false;
}
}
public boolean hasInt(JTextField textfield) {
try {
Integer.parseInt(textfield.getText());
return true;
} catch (NumberFormatException e) {
return false;
}
}
public boolean isValid(JTextField textfield) {
if (hasInt(textfield)) {
if (Integer.parseInt(textfield.getText()) >= minValue && Integer.parseInt(textfield.getText()) <= maxValue) {
return true;
} else {
return false;
}
} else {
return false;
}
}
答案 0 :(得分:3)
您的Listener类会创建另一个Gui实例。
GUI gui = new GUI();
Listener.test()中的代码更改了其Gui实例中的l1标签,而不是更改显示的Gui中的标签。
您必须为监听器提供真实Gui对象的引用。
您可能还必须在SwingUtilities.invokeLater中包装设置新标签的代码,以便从事件调度线程执行它。
SwingUtilities.invokeLater(new Runnable() {
public void run() {
<guiInstance>.l1.setText("Query: " + queryNo);
}
});
更新: 以下是执行所需操作的示例代码。您可以按原样使用它并使用它。看看GUI类在创建它时如何为Listener提供自己的实例(新的Listener(this)。如果文本字段包含文本,则标签打印“No errors”,否则打印“Error”。
在这种情况下,SwingUtilities.invokeLater部分并不是必需的。但是如果你进一步开发你的程序并开始添加想要更新UI的后台线程,那么你需要这样做。只是警告以后...; - )
import javax.swing.*;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import java.awt.*;
public class GUI {
JFrame f1 = new JFrame("GUI");
JLabel l1 = new JLabel("Output");
JTextField tf1 = new JTextField("");
public void run(){ // main calls this method.
f1.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
f1.setBounds(450, 170, 400, 400);
f1.setVisible(true);
f1.setResizable(false);
f1.setLayout(new GridLayout(2,1));
f1.add(l1);
f1.add(tf1);
f1.pack();
Listener listener = new Listener(this);
listener.listen(tf1);
}
public static void main(String[] args) {
new GUI().run();
}
public boolean everythingOK() {
return tf1.getText().length() > 0;
}
class Listener {
private GUI gui;
public Listener(GUI gui) {
this.gui = gui;
}
public void listen(final JTextField textfield) {
textfield.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) { test(); }
public void removeUpdate(DocumentEvent e) { test(); }
public void insertUpdate(DocumentEvent e) { test(); }
public void test() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if (gui.everythingOK()) { // everythingOK is just a boolean that test if input is valid number and returns true if it is.
gui.l1.setText("No errors."); // this code is supposed to change JLabels text.
} else {
gui.l1.setText("Error."); // this code is supposed to change JLabels text.
}
}
});
}
});
}
}
}