Reputation: 736
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
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