Auto Update in Install4J - Software Update with Silent Version Check
When we have a programm running on multiple client PC and we need an Auto Update. For Java Install4J provides Installer which can be used on on any platform. It is easy but very difficult as no clear help is available. AutoUpdate.java /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package autoupdater; import com.install4j.api.launcher.*; import com.install4j.api.update.*; import com.install4j.api.Util; import javax.swing.JOptionPane; /** * * @author rehmanm */ public class AutoUpdate { static AutoUpdate AutoUpdateObj; public static AutoUpdate getInstance(){ if (AutoUpdateObj ==null) AutoUpdateObj = new AutoUpdate(); return AutoUpdateObj; } private AutoUpdate(){ } public void Update(){ try { JOptionPane.showMessageDialog(null, "Download Location " + Util.getUserHome()); JOptionPane.showMessageDialog(null, "Possible Entry : " + UpdateCh...