Java Swing applications by default have the Java coffee cup icon appear in the top left corner of the application.

I would like to replace this with my own image - what API is used?

Can this be done at run time, or must something be done at install time?

Thanks!

link|improve this question

3  
Take a look at [ How do I set an Application's Icon Globally in Swing? ](stackoverflow.com/questions/103179/…) and [ How do I change the default application icon in Java? ](stackoverflow.com/questions/209812/…). – Matthew Flaschen Sep 17 '10 at 2:19
feedback

2 Answers

up vote 4 down vote accepted

JFrame.setIconImage(Image image) does exactly that.

link|improve this answer
feedback

Look at the setIconImage method.

link|improve this answer
-1, for duplicate answer, why clutter the forum? – camickr Sep 17 '10 at 3:26
+1 for a more recent link, albeit 26 seconds later. :-) – trashgod Sep 17 '10 at 4:06
@camickr It didn't show up as a dup when I posted it... I just found that out now. – TofuBeer Sep 17 '10 at 14:50
I figured that was the case. When I looked at the question it was answer 14 seconds before I browsed it. The point about a more recent link is another reason why I don't include links to the API. I just point out the method since every programmer should have easy access to the API for whatever version they are using. You can't assume version 5 or 6 is the proper API. – camickr Sep 17 '10 at 15:56
feedback

Your Answer

 
or
required, but never shown

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