所以我有SparkleAcrivator类

public class SparkleActivator {
    private static boolean sparkleLibLoaded = false;
    //private String downloadLink;
    private String menuItemTitle;

    public native static void initSparkle(String pathToSparkleFramework,
                                          boolean updateAtStartup,
                                          int checkInterval,
                                          /*String downloadLink,*/
                                          String menuItemTitle);

    private boolean updateAtStartup = true;
    private int checkInterval = 86400;

    public SparkleActivator(/*String downloadLink, */String menuItemTitle) {
        //this.downloadLink = downloadLink;
        this.menuItemTitle = menuItemTitle;
    }

    public void start() throws Exception {
        try {
            if(!SparkleActivator.sparkleLibLoaded) {
                System.loadLibrary("sparkle_init");
                SparkleActivator.sparkleLibLoaded = true;
            }
        } catch (Exception ex) {
            ex.printStackTrace();
            return;
        }

        initSparkle(System.getProperty("user.dir") + "/../../Frameworks/Sparkle.framework",
                updateAtStartup, checkInterval, /*downloadLink, */menuItemTitle);
    }
}


在主类中,我启动我的独立应用程序并使用Sparkle

public static void main(final String... args) {

                if (Helper.isOsx()) {

                    try {
                        sparkleActivator.start();
                    }    catch (Exception e) {
                        new ExceptionHandler(true, 19).handleException(new NotFountSparkleInitException());
                        return;
                    }
                    SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                                initApp();

                        }
                    });
                }
                else {

    }


出现了问题,Sparkle和我的应用程序几乎同时启动,但是我需要等待用户在Sparkle窗口中执行操作,然后启动我的应用程序。

感谢您的帮助。

最佳答案

我们所知道的是Sparkle更新器requires to be called on the main thread(即GUI线程)。因此,您的应用需要运行才能调用。我认为没有解决此问题的明显方法。然而,...

解决该问题的一种方法是将应用的可见性设置为false,直到用户完成与更新程序的交互。

例如,您可以添加事件listener to your JNIadd listeners to your updater thread。但是,线程上的侦听器需要返回用户操作,而不是完成时返回。

关于java - 如何在Sparkle Updater(Java App)中等待用户操作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22662681/

10-11 04:09