Java Web Start 运行时不会下载更新的应用程序
我读过 JWS 检查服务器上的 jnlp 或 jar 文件的时间戳更改,以检测是否有更新的文件,但当我第二次运行应用程序时,我的应用程序更新不会自动下载。
如果我 javaws -uninstall,然后再次启动应用程序,它工作正常,所以我知道服务器上的文件已更新。我还检查了 FTP 上的时间戳,上传新文件时它们会更新,所以我认为这也不是问题。
有人可以帮忙吗?我们将不胜感激!
I've read that JWS checks the jnlp or the jar file on the server for a timestamp change to detect if there are updated files, but my application updates don't download automatically when I run an application a second time.
If i javaws -uninstall, then launch the app again, it works fine so I know the files on the server are updated. I also checked the time stamps on the FTP, and they are updated when new files are uploaded, so I don't think thats the issue either.
Can anybody help? It'd be very greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了让您的程序能够自行更新,您的 JNLP 文件应包含以下内容:
您可以将其放置在信息标记之后,而不是其内部。
In order for your program to update itself, your JNLP file should include the following:
You can place this after the information tag, not inside of it.