gpt4 book ai didi

java - 我正在尝试使用 jLabel 和 setText 方法设置 int 值

转载 作者:行者123 更新时间:2023-12-02 04:57:46 25 4
gpt4 key购买 nike

我正在尝试使用 jLabel 和 setText 方法设置 int 值。但 setText 当然需要一个字符串。我该如何解决这个问题?我会给你一段代码:

int value = 1;
if (this.crit.getValue() == 1.0D)
{
value = 10 - ((int)(1.0D / this.crit.getValue()) + 1);
this.lblUnten.setText((int)(1.0D / this.crit.getValue())+"");
texts((int)(1.0D / this.crit.getValue()), this.lblUntenmitte);
}
if ((this.crit.getValue() < 1.0D))
{
value = 10 - ((int)(1.0D / this.crit.getValue()) + 1);
texts((int)(1.0D / this.crit.getValue()));
texts((int)(1.0D / this.crit.getValue()), this.lblUntenlinks);
}
if (this.crit.getValue() > 1.0D)
{
value = (int)this.crit.getValue() + 7;
this.lblUnten.setText((int)this.crit.getValue());
texts((int)this.crit.getValue(), this.lblUntenrechts);
}
this.scale.setSelection(value);

}

最佳答案

int转换为String。您可以使用String.valueOf(value):

int value = 10; // Your value
yourLabel.setText(String.valueOf(value));

关于java - 我正在尝试使用 jLabel 和 setText 方法设置 int 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28609960/

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