在 Java中,要清除文本框的内容,可以使用setText()方法将文本框的文本内容设置为空字符串。下面是一个示例代码:
import javax.swing.*; public class ClearTextFieldExample { public static void main(String[] args) { JTextField textField = new JTextField(); JButton clearButton = new JButton("清除"); clearButton.addActionListener(e -> { textField.setText(""); // 清除文本框的内容 }); JFrame frame = new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLayout(new java.awt.FlowLayout()); frame.add(textField); frame.add(clearButton); frame.pack(); frame.setVisible(true); } }
上述代码创建了一个包含一个文本框和一个清除按钮的简单的图形用户界面。当点击清除按钮时,通过调用setText(“”)方法将文本框的内容设置为空字符串,从而清除文本框的内容。