Java Swing:带有文本字段的表单

时间:2013-12-07 18:24:23

标签: java forms swing actionlistener jtextfield

我正在用java做一个表单。

这个想法是:

当用户插入他的姓名和名字时,他必须按“提交”按钮。现在我想用提交按钮听这个动作,但我不知道如何得到用户在文本字段中输入的内容:“name”和“second name”。

我想通过提交按钮看到这些数据,但我不知道,如果可能的话。

或者我想知道当用户点击“提交”时我可以通过哪种方式查看所有这些数据。

谢谢,这是代码。

public class appNegozio extends JFrame {
     private JPanel contentPane;
     private JTextField textField;
     private JTextField textField_1;

/**
 * Launch the application.
 */
     public static void main(String[] args) {
         EventQueue.invokeLater(new Runnable() {
            public void run() {
              try {
                appNegozio frame = new appNegozio();
                frame.setVisible(true);
              } catch (Exception e) {
                e.printStackTrace();
              }
           }
        });
    }

/**
 * Create the frame.
 */
    public appNegozio() {
       setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       setBounds(100, 100, 450, 300);
       contentPane = new JPanel();
       contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
       setContentPane(contentPane);
       SpringLayout sl_contentPane = new SpringLayout();
       contentPane.setLayout(sl_contentPane);

       textField = new JTextField();
       sl_contentPane.putConstraint(SpringLayout.NORTH, textField, 10,    
                   SpringLayout.NORTH, contentPane);
       sl_contentPane.putConstraint(SpringLayout.WEST, textField, 62, 
                   SpringLayout.WEST, contentPane);
       contentPane.add(textField);
       textField.setColumns(10);

       textField_1 = new JTextField();
       sl_contentPane.putConstraint(SpringLayout.NORTH, textField_1, 16, 
                  SpringLayout.SOUTH, textField);
       sl_contentPane.putConstraint(SpringLayout.WEST, textField_1, 0, 
                  SpringLayout.WEST, textField);
       contentPane.add(textField_1);
       textField_1.setColumns(10);

      JLabel lblNome = new JLabel("Nome");
      sl_contentPane.putConstraint(SpringLayout.NORTH, lblNome, 10,  
                  SpringLayout.NORTH, contentPane);
      sl_contentPane.putConstraint(SpringLayout.EAST, lblNome, -7, 
                  SpringLayout.WEST, textField);
      contentPane.add(lblNome);

      JLabel lblCognome = new JLabel("Cognome");
      sl_contentPane.putConstraint(SpringLayout.NORTH, lblCognome, 0, 
                  SpringLayout.NORTH, textField_1);
      sl_contentPane.putConstraint(SpringLayout.EAST, lblCognome, -6, 
                  SpringLayout.WEST, textField_1);
      contentPane.add(lblCognome);

    JButton btnSubmit = new JButton("Submit");
    sl_contentPane.putConstraint(SpringLayout.NORTH, btnSubmit, 24, 
                  SpringLayout.SOUTH, textField_1);
    sl_contentPane.putConstraint(SpringLayout.WEST, btnSubmit, 10, 
                  SpringLayout.WEST, contentPane);
    contentPane.add(btnSubmit);
   }
 }

3 个答案:

答案 0 :(得分:2)

一种简单的方法是为每个final使用JTextField局部变量。 您可以在添加到ActionListener的<{1}}中访问它们:

JButton

答案 1 :(得分:2)

不要扩展JFrame,您不会在框架中添加任何新功能。

阅读How to Use Text Fields上Swing教程中的部分,了解一个工作示例,该示例将向您展示构建程序的更好方法,以便您可以访问ActionListener文本字段中的数据。

Swing教程提供了所有Swing组件的示例。

答案 2 :(得分:0)

使用JTextField object.getText()并将其本地存储在按钮的Event函数中的String中。使用该本地String作为参考。

实施例

String name=jtextfield.getText();