Tips: 1) It seems as though these icons are very much something that when deployed will be an 'embedded application resource' - i.e. in a Jar. For that reason, they will not be accessible as File objects as implied by yourFile. 2) Resources in Jars are accessible by URL obtainable from Class.getResource(String) 3) ImageIcon has a constructor that accepts an URL (it is not blocking, like the ImageIO.read() method, but JButton implements an ImageObserver - which is better) 4) Button has 2 constructors that accept an icon. – Andrew ThompsonApr 10 '12 at 20:48
5) To format code snippets, select the code and click the {} button above the question/answer posting/editing form. They appear with color context, better than pre/code wrappers. ;) – Andrew ThompsonApr 10 '12 at 20:51