Forums Login/signup

Storing JTextField to variable

+Pie Number of slices to send: Send
Hello,

I made this GUI using netbeans and I was wondering, how can I store the JTextFields to a local variable?



My event handler is in a different package

+Pie Number of slices to send: Send
 

Mark Miranda wrote:
I made this GUI using netbeans and I was wondering, how can I store the JTextFields to a local variable?




jTextField1 is a local(instance) variable (On a side note, it is a good idea to provide more informative names for variables, like firstNameField, or emailField or whateverField)
Is this what you were asking? Or did you mean how to store the value as an instance variable. In that case use something like
+Pie Number of slices to send: Send
Hi Mark,

According to the below code which you have coded i think you know how to get the value from the JTextField,

private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {
String text = jTextField1.getText();
System.out.println(text);
}

Please clarify if i have not understood you question.
+Pie Number of slices to send: Send
Please disregard the private void jTextField1ActionPerformed.... that shouldn't be there...my mistake

My overall goal is to create a form and once the 'Add' button is clicked I would like to display, using System.out.println() (for debugging purposes), each JTextField all at once.

I would like to use one event handler and that is AddressEntryEventHandler...

- i hope this makes sense..
+Pie Number of slices to send: Send
above mentioned goal can be accomplished in this way- make an array of JTextFields at class level, no need to have any ActionListener for the text fields, you need to have an ActionListener added to the JButton.

Here printtextFieldData() is a class method and is called from the inner anonymous class as jTextField array is not accessable form the inner anoymous class.

Hope this will answer your query
+Pie Number of slices to send: Send
Please UseCodeTags instead of color tags, and also keep your indentation intact.
+Pie Number of slices to send: Send
Howdy, Mark!

Champ, just a small observation on this. I think you want to store the value just to get it in a lower layer, isn't it? Well, here are some tips that I think that will help you:

1. In your JFrame, you have an instance level variable (private JTextField name) and you have a getter method that returns its content (for instance, getName -> return name.getText());
2. You have an ActionListener that listens to some button (for instance, a menu item). When you click it, something happens (for instance, another window is opened). It has an instance-level variable that stores the window that has the text field;
3. When you are building the window that has the menu item, you instantiate the ActionListener and pass the current window to this ActionListener (new YourActionListener(this));
4. In the actionPerformed method, you just call window.getName method from the window and then you'll have the value that is currently filled in the text field.

reply
reply
This thread has been viewed 5957 times.
Similar Threads
Convert working program to display in GUI
Reading RS232 and displaying contents on Frame
Pressing a button to open a new window
Problem With GUI of Net Beans
null exception in java swing code
More...

All times above are in ranch (not your local) time.
The current ranch time is
Jul 01, 2025 03:47:33.