How to deploy a desktop JavaFx 2.0 application correctly using jnlp for 32 and 64 bit?

纵饮孤独 提交于 2019-12-03 15:13:06

You miss xmlns:jfx namespace in your jnlp. It should starts with

<jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="iMonLauncher.jnlp">

Once user has regular java installed and clicked on such jnlp file he would be presented with automatic download message for FX. It will find out which java is used, download and install approprivate javafx version.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!