如何在Java Swing中从JTextField中检索值?

2022-09-01 01:21:51

如何从文本字段和 中检索值?我需要将值转换为进一步处理。我已经创建了一个文本字段,单击一个按钮,我需要存储输入到一个中输入的值,你能提供一个代码片段吗?actionPerformed()StringString


答案 1
testField.getText()

请参阅 JTextField 的 java 文档

示例代码可以是:

button.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent ae){
      String textFieldValue = testField.getText();
      // .... do some operation on value ...
   }
})

答案 2
* First we declare JTextField like this

 JTextField  testField = new JTextField(10);

* We can get textfield value in String like this on any button click event.

button.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent ae){
      String getValue = testField.getText()

   }
})

推荐