IzPack 帮助 - 创建 Java 和 JNLP 一键安装
我采纳了这里提供的建议,查看 IzPack,为使用我创建的 Java 桌面应用程序的计算机盲客户创建基于 JNLP 的一键安装。
但是,我似乎找不到解决方法。 我不知道从哪里开始,似乎在线教程都是基本的“查看示例”,它们本身是预先编译的并且没有来源。
我想创建一个简单的表单 - 无论是在 JSP 还是 JNLP 安装应用程序中(最好是 JSP,并且 JNLP 应该从启动它的 JSP 获取参数)。 然后,当用户单击“安装”时,程序将毫无问题地安装到 userappdata 的默认目录(UAC 除外)。
但 IzPack 似乎强迫我使用面板和其他东西......不确定我是否想要所有这些。
或者可能.... 嗯,写这篇文章只是给了我一个想法,但我仍然想要一些反馈。
谢谢。
I took the advice I've been given here to look at IzPack to create a JNLP based one click installation for computer illiterate clients who are using a Java desktop application I've created.
Java Web Start Driven Installation
However, I can't seem to find my way around it.
I don't know where to begin and seems the online tutorials are basic "look at the examples" which are themselves pre compiled and not sourced.
I want to create a simple form - be it in JSP or the JNLP install app (preferably JSP and the JNLP should get arguments from the JSP that launches it).
Then when the users click Install, the program installs to the default directory of userappdata with no questions (except for the UAC).
But IzPack seems to be forcing me to use panels and stuff... Not sure I want all of that.
Or maybe....
Hmmm, writing this just gave me an idea, but I'd still like some feedback.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许还有另一种方法?
如果您需要的只是允许用户调用 JAR,那么请考虑使用 JSmooth 将其包装在 exe 文件中。 exe 文件知道如何正确调用 java 并提示用户下载(如果不存在)。
为此,我们还使用单罐将多个罐子包装在一个罐子中。
Another approach perhaps?
If all what you need is to allow the user invoke a JAR, then consider using JSmooth to wrap it in an exe file. The exe file knows how to invoke java correctly and prompt the user to download if not present.
We also have used one-jar to wrap multiple jars in a single jar for exactly this purpose.