我有一个 GUI 屏幕,里面有一个标签。我现在想用如下所示的文本设置标签 ( Test
)。但它没有得到更新。我认为以下代码中有错误,我在 try 块中重新创建 FrameTest 的新对象;
FrameTest frame = new FrameTest();
frame.setVisible(true); //(the full code given below)
完整代码:注意:以下类是从JFrame扩展而来的
import java.awt.BorderLayout;
public class FrameTest extends JFrame {
private JPanel contentPane;
private JLabel lblLabel;
public void mainScreen() {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
FrameTest frame = new FrameTest();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public void writeLabel(String k){
this.lblLabel.setText(k);
}
public FrameTest() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
lblLabel = new JLabel("LABEL");
contentPane.add(lblLabel, BorderLayout.CENTER);
}
}
测试班
public class Test {
public static void main(String[] args) {
FrameTest f = new FrameTest();
f.mainScreen();
f.writeLabel("FFFFF");
}}
帮助,我怎样才能让文本"FFFFF"
显示到标签上?