gpt4 book ai didi

java - 更改 JLabel 的文本 - 初学者

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:40:45 24 4
gpt4 key购买 nike

我的代码;

package com.test;

import java.awt.EventQueue;

public class TestGU {

private JFrame frame;
private JLabel la;

/**
* Launch the application.
*/
public void mainM() {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
TestGU window = new TestGU();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

public void redefine(String text){
la.setText(text);
frame.repaint();

}

/**
* Create the application.
*/
public TestGU() {
initialize();
}

/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

la = new JLabel("New label");
frame.getContentPane().add(null);
}

}

我正在尝试从如下所示的主要方法(这是一个单独的类)更改标签的文本;

public class Test {

/**
* @param args
*/
public static void main(String[] args) {

TestGU g = new TestGU();
g.mainM();
g.redefine("New Value");
}
}

1.) 执行 main 方法时,我希望标签具有文本“New Value”,但它仍然包含文本 New label。什么都没有改变,我该如何更正?

最佳答案

看起来您正在创建 TestGU 的两个实例,并且您的 redefine 方法更改了未显示的实例上的标签值。

现在只是检查我的理论....

编辑:
您不需要创建第二个实例;你的 mainM 方法应该是;

public void mainM() {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

PS - 我假设您的初始化方法实际上有这一行?

frame.getContentPane().add(la);

而不是 add(null),因为它根本不起作用。

关于java - 更改 JLabel 的文本 - 初学者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13415584/

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