我是Java编程的新手。我想在输出窗口中显示我的变量的值,而不是在控制台视图中。 代码如下:
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
public class ShowAFrame {
public static void main(String[] args) {
// Variables in this code
int one = 12;
int two = 22;
int total = one + two;
System.out.println(total);
JFrame myFrame = new JFrame("Test GUI");
myFrame.setVisible(true);
myFrame.setBounds(300, 200, 700, 400);
JLabel myText = new JLabel("I'm a label in the window",
SwingConstants.CENTER);
myFrame.getContentPane().add(myText, BorderLayout.CENTER);
}
}
答案 0 :(得分:8)
这样做:
label.setText(String.valueOf(variable));
变量可以是int,float,double,long。
答案 1 :(得分:4)
将total(您的结果变量)值传递给JLabel constrcutor。
JLabel myText = new JLabel("I'm a label in the window, output : "+total,
SwingConstants.CENTER);