Possible Duplicate:
Why do we use rt.jar in a java project?
I am very confused to knowing about rt.jar file.
What is the role of rt.jar file or use of rt.jar file in java??
Thanks.
Possible Duplicate:
Why do we use rt.jar in a java project?
I am very confused to knowing about rt.jar file.
What is the role of rt.jar file or use of rt.jar file in java??
Thanks.
Short question short answer.
rt.jar
contains all of the compiled class files for the base Java Runtime environment. You should not be messing with this jar file.For MacOS it is called
classes.jar
and located under/System/Library/Frameworks/<java_version>/Classes
. Same not messing with it rule applies there as well :).http://javahowto.blogspot.com/2006/05/what-does-rtjar-stand-for-in.html
Your question is already answered here :
Also, a good link on what happens if we try to include our class file in rt.jar.