我想做一个更新查找器,可以这么说.客户端应用程序将向服务器发送请求,获取最新版本,并以提示的形式将其返回给用户:
There is a new update,
X.x
. Would you like to update?
这种性质的东西.我该怎么做呢?
另外,如果可能的话,请不要建议API,除非它真的是必要的,否则对初学者来说真的很难理解.我想让我的项目使用核心Java包.
解决方法:
你看过Java Web Start了吗?
Updates to a Java Web Start application are automatically downloaded when the application is run standalone from the user’s desktop.
http://docs.oracle.com/javase/tutorial/deployment/webstart/