Are there licensing restrictions that permit recompiling the JVM's launcher code (java.c) into an EXE with a name of my choosing?

The standard JDK lays out source for the launcher but implies that it is intended for viewing and understanding, but I wasn't sure it could be used (in conjunction with headers available in the downloadable JDK source) for recompiling java.exe.

link|improve this question

17% accept rate
For deploying Java desktop apps., a better option than an EXE is to install the app. using Java Web Start. JWS works on Windows, OS X & *nix. – Andrew Thompson Jan 19 at 5:45
2  
You can write your own app that loads the jvm shared library (dll), initializes the JVM and goes. Its a bit of work, but its not terribly hard. – Bill Jan 19 at 5:46
I should have mentioned that the EXE under question is intended to be used as an RMI server. Bill, I have been trying the approach you mentioned, but am running into problems due to which RMI object activation fails. I am able to locally compile java.c into a custom named EXE and able to host RMI objects, but unaware of the licensing issues that may arise in doing this. – Ranjit Iyer Jan 19 at 6:24
feedback

1 Answer

Should be fine as long as you don't sell it or anything.

link|improve this answer
Ours is a commercial product and the launcher would be bundled with it and used in it's implementation. Would then, selling the product implicitly amount to 'selling' the launcher? – Ranjit Iyer Jan 23 at 19:14
I don't think so, Java doesn't originally cost money, so it's ok. I think. Don't blame me if I'm wrong. – Jimmt Jan 24 at 3: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.