gpt4 book ai didi

java - 如何检查标签是否不为空?

转载 作者:行者123 更新时间:2023-12-02 05:34:07 25 4
gpt4 key购买 nike

如何检查标签是否空且干净?

最佳答案

代码:

    JFrame f = new JFrame("Demo");
f.setLayout(new FlowLayout());
f.setSize(300, 200);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//put the frame at the center of your monitor
f.setLocationRelativeTo(null);
JTextField userText = new JTextField(6);
JLabel label = new JLabel();
JButton button = new JButton("OK");


button.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent ae) {
if (label.getText().isEmpty()) {
label.setText(userText.getText());
}
}
});


f.add(userText);
f.add(button);
f.add(label);
f.setVisible(true);
}

addActionListenerJava 8 中是

button.addActionListener((ActionEvent ae) -> {
if (label.getText().isEmpty()) {
label.setText(userText.getText());
}
});

说明:

检查标签是否包含任何字符串,如果为空,则表示这是第一次,并且尚未在其中设置任何文本。如果不为空,则标签内已经有任何文本,因此您不能再在标签内输入任何文本,因为无法满足 if 语句并且标签不会被编辑。

关于java - 如何检查标签是否不为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25189027/

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