This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
documentation:javanetworklaunchprotocol [2010/02/15 16:16] – mcooper6 | documentation:javanetworklaunchprotocol [2012/10/10 00:50] (current) – [Useful Links] mcooper6 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | <WRAP left 40%> | ||
+ | ~~TOC~~ | ||
+ | </ | ||
+ | // | ||
+ | // | ||
+ | <WRAP centeralign 100% bigger> | ||
+ | <WRAP bigger fgred> | ||
+ | <WRAP muchbigger> | ||
+ | Up and Running | ||
+ | </ | ||
+ | <WRAP left 40%> | ||
+ | <WRAP right bgwhite> | ||
+ | <WRAP download round>< | ||
+ | </ | ||
+ | </ | ||
+ | <WRAP clear></ | ||
+ | Java Network Launch Protocol provides Java developers with new options for deploying applications across many different platforms. JNLP is intended to help developers eliminate platform dependencies by providing Java Runtime Environment management utilities that ensure proper compatibility as well as a few convenient tools aimed at making complex tasks very easy. Further, keeping Java Web Start applications up-to-date is a breeze, as they can be launched from a web server, ensuring that each time the latest version of the program is launched. | ||
+ | ===== The Basics ===== | ||
+ | <WRAP round info> | ||
+ | *Create a Java file and import the javax.jnlp classes | ||
+ | *Compile your .java file by setting the -classpath attribute to the path of javaws.jar (in your local JDK). | ||
+ | *Create a manifest file to identify the main class of your program. | ||
+ | *Archive your compiled Java classes into a .jar archive using a manifest file. | ||
+ | *Create a .jnlp file to direct the web browser to your .jar archive | ||
+ | *Put your .jnlp file and .jar archive on a server and link to the .jnlp file from a web page. | ||
+ | </ | ||
+ | This document is not intended to introduce the Java programming language. | ||
+ | |||
+ | ===== Write and Compile ===== | ||
+ | < | ||
+ | Before you can utilize Java Web Start methods, you'll have to import javax.jnlp along with any other classes that your application needs. | ||
+ | |||
+ | <WRAP round info> | ||
+ | In most installations of Java, the javaws.jar file is located at ~/ | ||
+ | </ | ||
+ | Lets assume we've created a new directory and named it ' | ||
+ | |||
+ | <cli> | ||
+ | javac -classpath / | ||
+ | </ | ||
+ | |||
+ | <WRAP info round> | ||
+ | NOTE: This demo uses methods contained within javaws.jnlp classes, therefore, the javaws.jnlp library has to be imported. | ||
+ | </ | ||
+ | |||
+ | ===== Create the Manifest ===== | ||
+ | < | ||
+ | There are a few more steps before take off. The new class files will need to be archived in a jar file themselves, and this means that a manifest file is needed. | ||
+ | |||
+ | < | ||
+ | Main-Class: MyProgram | ||
+ | </ | ||
+ | (this is the name of the class file created by the compiler, and it's case sensitive.) | ||
+ | |||
+ | ===== Archive the Class Files ===== | ||
+ | < | ||
+ | Now we can archive the classes with the following command: | ||
+ | |||
+ | <cli> | ||
+ | jar cvfm MyProgram.jar / | ||
+ | </ | ||
+ | |||
+ | ===== The JNLP File ===== | ||
+ | < | ||
+ | Are we there yet? Almost! | ||
+ | <code xml> | ||
+ | <?xml version=" | ||
+ | <jnlp spec=" | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | < | ||
+ | <j2se version=" | ||
+ | <jar href=" | ||
+ | </ | ||
+ | < | ||
+ | </ | ||
+ | </ | ||
+ | This is nothing more than XML, but it's important to note the placement of the jar file reference within the < | ||
+ | |||
+ | <code xml> | ||
+ | < | ||
+ | <j2se version=" | ||
+ | <jar href=" | ||
+ | </ | ||
+ | </ | ||
+ | The codebase and href attributes of the < | ||
+ | |||
+ | <code xml> | ||
+ | <jnlp spec=" | ||
+ | </ | ||
+ | |||
+ | If you intend to run this from the command line, you can change the < | ||
+ | |||
+ | <code xml> | ||
+ | <jnlp spec=" | ||
+ | </ | ||
+ | |||
+ | The codebase attribute tells Java Web Start where to find the .jar and .jnlp files that launch your Java application. | ||
+ | |||
+ | ===== Run It From the Command Line ===== | ||
+ | < | ||
+ | <cli> | ||
+ | javaws / | ||
+ | </ | ||
+ | |||
+ | Pretty neat! Now, to launch this on the web, simply place your .jnlp and your jar file in the same directory on your web server, then create a | ||
+ | regular HTML file and link to your .jnlp file. | ||
+ | ===== Link It ===== | ||
+ | < | ||
+ | Embed the following link to any HTML or PHP web page: | ||
+ | <code html> | ||
+ | <a href=" | ||
+ | </ | ||
+ | |||
+ | There you have it! Java JNLP, a quick and easy way to deploy Java applications on the web. | ||
+ | |||
+ | ===== Useful Links ===== | ||
+ | *[[http:// | ||
+ | *[[http:// | ||
+ | *[[http:// | ||
+ | *[[http:// | ||
+ | *[[https:// | ||
+ | *[[http:// | ||
+ | *[[http:// | ||
+ | *[[http:// | ||
+ | |||
+ | Do you have something to add to this article? |