Given this code,
tableButton = new JButton(new ImageIcon("80F_FG2015.GIF"));
how would I get that String to be returned to me so I can compare it to another String?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Well one way to solve your problem is creating
The second argument is the description. And ImageIcon.toString() method returns the description. So you can very well compare this description with the description from another image icon
You can get back the description as follows: