Revision history for jar
Additions:
CategoryJava
Additions:
~[[http://www.reddit.com/r/puppylinux/comments/2f9rrs/how_to_get_jar_programs_running_in_puppy_driving/ How to get .jar programs running in Puppy? (reddit)]]
Additions:
~Change to the same directory as the JAR file and run it. Use the [[cd]] command to change to the correct directory. Once inside the correct directory, use the java command with the -jar option for example (app.jar = .jar filename)-
---
~##java -jar app.jar##
---
---
~##java -jar app.jar##
---
Deletions:
Additions:
~Change to the same directory as the JAR file and run it. Use the [[cd]] command to change to the correct directory. Once inside the correct directory, run ##java -jar app.jar## (app.jar = .jar filename)
Deletions:
Additions:
~The ##.jar## refers to a collection of [[Java]] package multiple Java source files. This is run by the JavaRuntimeEnvironment.
Deletions:
Additions:
==Related Webpages==
Deletions:
Additions:
====jar====
~The ##.jar## refers to a collection of [[Java]] [[source code]]. This is run by the JavaRuntimeEnvironment.
==Run from commandline==
Change to the same directory as the JAR file and run it. Use the [[cd]] command to change to the correct directory. Once inside the correct directory, run ##java -jar app.jar## (app.jar = .jar filename)
==Related Webpages
~[[http://www.ehow.com/how_5021615_execute-jar-file.html How to Execute a Jar File (ehow.com)]]
~The ##.jar## refers to a collection of [[Java]] [[source code]]. This is run by the JavaRuntimeEnvironment.
==Run from commandline==
Change to the same directory as the JAR file and run it. Use the [[cd]] command to change to the correct directory. Once inside the correct directory, run ##java -jar app.jar## (app.jar = .jar filename)
==Related Webpages
~[[http://www.ehow.com/how_5021615_execute-jar-file.html How to Execute a Jar File (ehow.com)]]
Deletions:
~The ##.bin## refers to "binary" as in [[BinaryCode Binary Code]]. This is a program that has been compiled and can be "executed" or run by the computer.