3

I would like to make an update finder, so to speak. The client application would send a request to the server, get the latest version, and return it to the user in the form of a prompt:

There is a new update, X.x. Would you like to update?

Something of that nature. How would I go about doing this?

Also, if possible, please don't suggest API's unless it is either really necessary or it would be really hard for a beginner to understand. I would like to keep my project working with core Java packages.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
mattbdean
  • 2,532
  • 5
  • 26
  • 58

2 Answers2

4

Have you looked at 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/

Eric J.
  • 147,927
  • 63
  • 340
  • 553
1

One way to do this easily in Java is to use Java Web Start.

theglauber
  • 28,367
  • 7
  • 29
  • 47