+ 1
What is. Jar
4 ответов
+ 17
Java Archive.
+ 5
The .jar files are created by the java archiver, an utility from the JDK. The .jar files contains all the .class files of your finished java project and other files needed for your project to run in the JVM in a convenient way for deployment. Instead of having to copy all the classes and directories structure to your app users, you create the .jar file of your project and it will contain everything that your program needs.
+ 2
.jar is the extention of packaged java classes. Packaging your java code makes it much more portable !
0
jar is the extension of java applications usually used in mobile apps