java 怎么获取label的值,并且把其值写到文件中

 我来答
山水阿锐
2015-06-15 · TA获得超过34.3万个赞
知道顶级答主
回答量:23.7万
采纳率:91%
帮助的人:3.2亿
展开全部
public class Test {
JFrame myframe = new JFrame();
JLabel label1 = new JLabel("label1");
JLabel label2 = new JLabel("label2");
JButton button1 = new JButton("确定");
JButton button2 = new JButton("取消");
public void init() {
myframe.setSize(300, 200);
myframe.getContentPane().setLayout(null);
myframe.setTitle("java 小程序");
label1.setBounds(20, 20, 120, 27);
label2.setBounds(20, 40, 120, 27);
button1.setBounds(20, 60, 60, 27);
button2.setBounds(100, 60, 60, 27);
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
label1.setText("你点了确定");
}
});
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
label2.setText("你点了取消");
}
});
myframe.add(label1);
myframe.add(label2);
myframe.add(button1);
myframe.add(button2);
myframe.show();
}
public static void main(String[] args) {
new Test().init();
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式