+ 2
Which platform is necessary to run java files?
3 ответов
+ 2
Java is known as a platform independent language. in other words, the same source code written on one platform bcan be executed on any other platform. We only need JVM (Java Virtual Machine) to convert .java files (written by the user) to .class files (executed by the machine) for the machine to execute.
+ 14
Java is platform independent...
WORA ~_~
+ 4
JRE (Java Runtime Environment) which is a form of virtualization. Most platforms support =< 8:
- Linux*
- Windows
- MacOS
- FreeBSD
*Some Debian-based may require backports depending on the version. Never mess with the default Java version unless you know what you're doing.