Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the alternatives to auto-update an Java Swing application?

I have developed a Java Swing application, and it will be installed on multiple clients in different locations. The application will be installed manually by me. But I would like to auto-update the application over Internet, without user interaction, similar to how Google Chrome is updated.

What are the alternative ways to achieve this auto-update functionality in Java Swing? Is there any good third party frameworks that can solve this problem? or is there any Java built-in functionality that I can use?

like image 727
Jonas Avatar asked Jan 30 '11 18:01

Jonas


1 Answers

Deploy the application using Java Web Start and you'll easily be able to have it auto update itself.

like image 85
nos Avatar answered Oct 24 '22 12:10

nos