私は、MacOS 10.12でInstall4jの6.1.3評価版を使用しています。私のアプリケーション内からサイレントバージョンチェック付き自動アップデータを起動し、更新用のURLを渡したいと考えています。 Launcher Integrationパラメータとしてxmlを使用します。install4j自動更新ランチャー統合コマンドライン引数
私はこのコードを作成するには、ランチャーの統合ウィザードを使用しました。)
// This will return immediately if you call it from the EDT,
// otherwise it will block until the installer application exits
ApplicationLauncher.launchApplicationInProcess("9248", new String[] {"-DmyUpdateURL=" + MY_UPDATE_URL}, new ApplicationLauncher.Callback() {
public void exited(int exitValue) {
//TODO add your code here (not invoked on event dispatch thread)
}
public void prepareShutdown() {
//TODO add your code here (not invoked on event dispatch thread)
}
}, ApplicationLauncher.WindowMode.FRAME, null
を。
[自動更新オプション] - > [URL for updates.xml]フィールドでmyUpdateURLを使用します。 Install4J内からmyUpdateURLを参照するにはどうすればよいですか?あるいは、私がこの間違いを犯してしまった場合、ランチャー統合を使ってupdates.xmlのURLを自動アップデータにどのように渡しますか?
ありがとうございます!
これはすばらしいことでした。どうもありがとうございます! – HankNessip