hi!!!
whty should we go for JAR file in java....what it's use?
Normally a Java application consists of quite a bit of classes. Each public
class is stored in its own file. You don't want to carry all those files around
for every single deployment of your application do you? A .jar file is simply
a .zip file with a bit of additional information for the JVM; it's quite convenient:
just one file to take care of instead of an entire bunch of .class files.
Comment