vote up 0 vote down star

When compiling a '.java' file it will create a new '.class' file, which is not a pure binary file. To run this file you need an interpreter called 'java'. Is there a way to convert this '.class' file to a binary file? In which you don't need another program to run?

F.ex './filename' in Linux.

Sorry for my bad english.

-Henrik

flag
2  
FYI, the program you're looking for is called a compiler :) Both the act of compiling .java to .class and compiling to a binary format are compilation (as is any machine-transformation of code). Also, "binary file" may be more correctly described as an "executable file" or perhaps something involving the phrase "machine language". – rmeador Sep 29 at 23:08
Dup of stackoverflow.com/questions/804466/… and stackoverflow.com/questions/80105/… – skaffman Sep 29 at 23:17
Aah, I see. Thank you guys :-) – Henrik Sep 30 at 7:37

1 Answer

vote up 4 vote down

What you need is GCJ,

http://gcc.gnu.org/java/

link|flag
I'm sure there are other possible solutions, but this is one, and seemingly a good one (I've used programs compiled with it, but never created one myself). +1 – rmeador Sep 29 at 23:05

Your Answer

Get an OpenID
or

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