Saturday

Java Deployment Toolkit

Since Java 6u10, Java Deployment Toolkit was introduced then. Personally, I guess this is in conjunction with the launch of Java FX.

Java Deployment Toolkit deploys applets and applications to a large variety of clients with JS.

<HTML>
<BODY>
<script src="http://java.com/js/deployJava.js">
deployJava.installLatestJRE();
</script>
</BODY>
</HTML>

It is very convenient. It can ask user to install JRE if, the user's machine does not have JRE. In addition to this, it can also embed Applet on-the-fly.

So, if you are developing Java Applet/ JavaFX, check this out, you will be loving it, I am sure.


For more information about Java Deployment Toolkit, please click here.

No comments: