rvaede wrote:
> I would like to clarify the meaning of JAR files.
You need to post this question to another newsgroup. This group gets
practically no traffic these days.
I believe that jar files are always a compressed zip file (in other
words, if you rename it to .zip then you can unpack it using winzip).
A jar file contains java class files and associated meta-data and other
resources (text, images, etc). A java class file is java source code
compiled into a binary executable that is executed by the Java Runtime
Environment (JRE) or the Java Virtual Machine (JVM) installed on the
computer.
Developers can obfuscate JAR files so that a user of the JAR file
doesn't get much information regarding the code it contains, or to
reduce its size.