Nfernandez
Nfernandez

Reputation: 736

cross compiler for java for ubuntu on windows

I am deploying a java application in windows IDE but this application will be run in Ubuntu. What cross compiler do I need to compile in windows and then deploy it in Ubuntu?

Thank you,

Upvotes: 0

Views: 325

Answers (1)

Carlos Futino
Carlos Futino

Reputation: 115

All Java compilers are cross-platform. That's one of the most important characteristics of Java. Java compiles to byte-code, which is the interpreted by a virtual machine. If a computer has a virtual machine it can run byte code generated in any operating system.

Upvotes: 3

Related Questions