本文介绍了如何在Java Swing中从JTextField中检索值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们如何从文本字段和 actionPerformed()
中检索值?我需要将值转换为 String
以进行进一步处理。我创建了一个文本字段,单击一个按钮,我需要将输入的值存储到字符串
中,您能提供一个代码片段吗?
How do we retrieve value from a textfield and actionPerformed()
? I need the value to be converted into String
for further processing. I have created a textfield on clicking a button I need to store the value entered into a String
can you please provide a code snippet?
推荐答案
testField.getText()
请参阅的java文档
示例代码可以是:
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String textFieldValue = testField.getText();
// .... do some operation on value ...
}
})
这篇关于如何在Java Swing中从JTextField中检索值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!