javaws -uninstall
is an useful command related to java web start which clears up the cache for you and you need not struggle with deleting the jar files in the %temp%
or other folders.Command for deleting Java Web Start Cache
javaws -uninstall
You can also add an
update
element in your application's jnlp file for handling the application updates. <?xml version="1.0" encoding="utf-8"?> <jnlp spec="6.0" codebase="." href="application.jnlp"> <information> <title>My Application</title> <vendor>A Developer's Diary</vendor> </information> <security> <all-permissions/> </security> <update check="timeout" policy="always" /> <resources> <jar href="application.jar"/> </resources> <component-desc> </jnlp>
No comments:
Post a Comment