Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First of all, this is not a duplicate of the very common question of making an EXE from Java classes. I do not need to do that.

To solve NetBeans RFE #64612 without manual steps I need a Java (6+) library which can take an existing Windows *.exe file and replace its icon with a substitute in a common format. The executable, which is generic and prebuilt (distributed in binary form), already knows how to load an application-specific config file and then start the JRE with various application JARs etc.; the only problem is that it has a generic icon, and I would like to replace that icon as part of a pure Java build with an application-specific icon, so it looks prettier.

The library must be available under a nonviral open-source license; cross-platform (must run on Windows, Linux, Mac, Solaris) so cannot fork some OS-specific helper tool; and must accept PNG input, though the EXE must work on XP so according to Wikipedia should embed BMP format. At a high level, supposing Ant as a build tool, I would like something like this:

<replaceicon from="app.exe" to="hello.exe" icon="hello.png"/>

Does anyone know if a tool matching these specifications already exists? From various web searches I found Launch4J, but this appears to just fork windres for the real work, thus not trivially portable. I found JSmooth which looks more promising - appears to include Java code to handle the ICO codec and manipulate PE files - but it is GPL. WinRun4J looks to use native code for icon manipulation, though I had a hard time following its sources. Jimi supposedly handles the ICO format (for that matter the standard javax.imageio seems to as well) but I guess has no facility for updating PE resources.

share|improve this question
A linked question points to java.net/projects/pe-file-reader but this is GPL and appears to only read, not write, PE files. – Jesse Glick Jul 10 '12 at 18:34

2 Answers

According to my Eclipse Rich Client Platform product builder,

  • Linux requires an XPM icon
  • MacOSX requires an ICNS file
  • Solaris requires 4 PM icons, Large, Medium, Small, and Tiny
  • Windows (32 bit) requires 6 separate BMP images, or an ICO file.

Your distribution package is going to have to contain all of these files to be platform independent.

I've not worked with the other platforms, but on Windows, you can change the program icon by right clicking on the existing icon and left clicking on Properties. Left click on the Shortcut tab, and left click on the Change Icon button. Browse over to the distribution directory, and select the ICO file.

I'm sure it's possible to automate the Windows icon change when you deliver the distribution package. I imagine it's possible on the other platforms.

share|improve this answer
Interesting background information, but not an answer to my question. – Jesse Glick Dec 29 '11 at 18:41

You simply have to replace the first ICO or BMP in the executables resource section. That one is automatically picked by explorer as the icon to display.

share|improve this answer
2  
Right, replacing the icon in the executables resource section is what I want to accomplish. But the question was how to do this, concretely, from a Java-based build possibly running on another OS (possibly on a CI server). – Jesse Glick Dec 29 '11 at 18:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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