First, you would have to precisely define the term "platform independent." Then, given that definition, your question could be answered. But just asking whether something is "platform independent" without explaining what that means to you just starts an argument between people who don't realize that there are different ways to define this term.
So if you want a sensible answer, you have to refine your question further.
Nitin Jain
Greenhorn
Joined: Oct 24, 2006
Posts: 4
posted
0
Java Compiler and JVM are independent of each other, Java Compiler and JVM both are platform dependent.
Java Compiler - this is used to convert java program in the form of "Byte Code" that is nothing but class file and this compiler is coming different for different platform (windows, linux etc) so this is plateform dependent.
JVM - Use to run "Byte Code", this byte code is common for all the plateform, because all the compiler converts java code into the byte code that is common for all, and JVM can understand only byte code and can run this byte code on any platform, but again you required compitable JVM for that plateform.
Result - both Java Compiler and JVM are platform dependent but Java Applications are platform independent, because you can take byte code(.class file) to any other platform and can run using JVM.
Vlado Zajac
Ranch Hand
Joined: Aug 03, 2004
Posts: 244
posted
0
Sun's java compiler is written in Java and so it is platform independent in the same way as other Java programs. (Only the JVM and launcher program are platform dependent).
Other compilers may not be written in Java.
Jobin Mathew
Ranch Hand
Joined: Oct 17, 2006
Posts: 83
posted
0
Java Compiler and JVM both are platform dependent. Only the byte code (class file) generated by Compiler is platform independent.
Ernest Friedman-Hill
author and iconoclast
Marshal