Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6365363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:17:01+00:00 2026-05-25T00:17:01+00:00

I have been playing about with a GUI today and trying add different elements

  • 0

I have been playing about with a GUI today and trying add different elements to it,

public void actionPerformed(ActionEvent e)
    {
        if (e.getSource() == jButton1)                              
        {
            //Do Something
        }

        JComboBox cb = (JComboBox)e.getSource();
        String petName = (String)cb.getSelectedItem();

        if(petName == "Cat")
        {
            //Do Something
        }

   }

When i click jButton1 it does what i want it to do and when i select “Cat” from the combobox it does what i want it to do, but only when i click jButton1 and not when i select cat it gives me the following error

javax.swing.JButton cannot be cast to javax.swing.JComboBox

Any ideas obviously something to do with the comboxbox code and when i remove the code from JCombobox down the error doesnt appear.

Any help would be good, not homework just be messing about and seeing if i can learn new things

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:17:01+00:00Added an answer on May 25, 2026 at 12:17 am

    First of all, don’t compare strings using ==, use the equals method. That is, change

    petName == "Cat"
    

    to

    petName.equals("Cat")
    

    (== compares references, not the objects the references refer to)

    Related question:

    • How do I compare strings in Java?

    Regarding the “JButton cannot be cast to JComboBox”-issue, it seems to me like you’re simply forgetting an else there. Try the following:

    if (e.getSource() == jButton1) {
        //Do Something
    } else {
    
        JComboBox cb = (JComboBox)e.getSource();
        String petName = (String)cb.getSelectedItem();
    
        if(petName == "Cat") {
            //Do Something
        }
    }
    

    (or simply return from the method once you’re done with the Do something related to the JButton.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been playing about with LINQ-SQL, trying to get re-usable chunks of expressions
I've been playing about with isotope a bit http://isotope.metafizzy.co/demos/relayout.html and have been trying to
I am currently learning about basic networking in java. I have been playing around
I've been playing about with CSS3 columns and have come across a positioning issue.
I'm have been playing around with linq this morning and have a questions about
I have been playing about with iText to try get a list of embedded
I have been playing with setting up different relationships for a few hours now
I have only been playing w/ wcf stuff for about a week. I have
I've been playing around with boost::spirit::qi lately and have been trying to write my
I have been learning about move constructors over the last day or so, trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.