vote up 2 vote down star
1

I'm programming my very first GUI app in Java using the Swing framework. I've coded a basic login system using the JTextField, JPasswordField, and JButton classes. Now, I'm writing the actionPerformed method for the button, which I want to remove these items as they are no longer necessary, but I am unsure as to the best way of achieving this.

I've considered using the setVisible method of these components, which seems to work, but I'm sure that's not the preferred way of doing it. Sorry if this is a bit of a dumb question..

flag

70% accept rate
What do you mean by removing them? Are you dinamically changing your only screen? – kd304 Jul 11 at 19:15
Yeah, that's what I'm trying to go for anyways...it's just a little confusing, because there's no reference to the actual JFrame containing the components. – mportiz08 Jul 11 at 19:31
Do you use some GUI editor for your app or you are just manually composing it? Can you show us some code samples? There is always the this within a JFrame – kd304 Jul 11 at 19:38

5 Answers

vote up 4 vote down check

Have your login dialog separated from your main window. When you finished with the login, just hide the login dialog.

You can also save your text fields and buttons into a class field, and later call remove(Component) for each one.

link|flag
Is it recommended to setVisible, or to remove? – Liran Orevi Jul 11 at 19:44
I favor separation. My login is usually a popup like modal dialog. I rarely need to change the contents of a jpanel - causes trouble with the layout management. – kd304 Jul 11 at 19:47
2  
If you use a dialog -- see JDialog -- then you'd normally dispose() it when done – kdgregory Jul 11 at 19:50
vote up 1 vote down

You could have a login JPanel, which is set up and displayed and once the user's password is verified, you can show your application JPanel. This can easily be done using a CardLayout.

It treats each component in the container as a card. Only one card is visible at a time, and the container acts as a stack of cards.

Here is a tutorial.

Using a CardLayout, your code could look something like this:

instance variables:

static final String LOGINPANEL = "LOGINPANEL";
static final String MAINPANEL = "MAINPANEL";
JPanel cards;

where your panels are created:

JPanel loginPanel = new JPanel();
//add your stuff to the login panel
JPanel mainPanel = new JPanel();  
//add your stuff to the main panel

cards = new JPanel(new CardLayout());
cards.add(loginPanel, LOGINPANEL); 
cards.add(mainPanel, MAINPANEL);

then when your password is verified, in the AWT thread, you can do this:

CardLayout cl = (CardLayout)(cards.getLayout());
cl.show(cards, MAINPANEL);
link|flag
vote up 0 vote down

I will suggest you to use a JDialog for your login. After a successful login you just need to call “dialog.dispose()” and then load your interface. If the application you are building need to display several windows you should consider to use a JDesktopPane (http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JDesktopPane.html)

link|flag
vote up 0 vote down

I agree with JPanel suggestion. Add the log-in components to a JPanel, then hide the JPanel once there is a log-in.

link|flag
hide the log-in Panel once the user clicks a successful log-in – Chung Pow Jul 11 at 19:40
This is the same logic as the JDialog stated above... have a seperate JPanel for a login, then hide it once the user has a successful login – Chung Pow Jul 11 at 20:05
I find this easier for the user because there arent any seperate windows open over the screen. Hope this revision helps! – Chung Pow Jul 11 at 20:12
vote up 1 vote down

Generally, you would want to be able to do this in one line of code. So, you should consider wrapping the different things you'd like to show or hide in a JPanel. Then, you can dynamically show or hide the JPanels.

link|flag
1  
If you change the contents of the JFrame, it is implicitely repaint()-ed. – kd304 Jul 11 at 19:34
Updated to reflect this. – JoshJordan Jul 11 at 20:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.