单击按钮进行下载并在 jprogressbar 中显示进度时,JavaFX 应用程序崩溃或冻结

问题描述

我正在使用 netbeans IDE 和 gui creator 编写一个 java 应用程序,我创建了一个简单的项目和一些用于从网站下载 jar 的按钮,但是,当我单击按钮时,应用程序冻结/崩溃并且没有允许我点击任何按钮或其他任何东西,当我最大化应用程序时,然后最小化窗口变成黑色。 下面是 gui creator 生成代码

    /*
 * To change this license header,choose License Headers in Project Properties.
 * To change this template file,choose Tools | Templates
 * and open the template in the editor.
 */
package mcsm;

/**
 *
 * @author YReza
 */
import mcsm.download;
public class MCSM1 extends javax.swing.JFrame {

    /**
     * Creates new form MCSM1
     */
    public MCSM1() {
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        jButton1 = new javax.swing.JButton();
        jButton2 = new javax.swing.JButton();
        jButton3 = new javax.swing.JButton();
        jButton4 = new javax.swing.JButton();
        jProgressBar1 = new javax.swing.JProgressBar();

        setDefaultCloSEOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        setTitle("MCSM");
        setBackground(new java.awt.Color(0,0));
        setForeground(java.awt.Color.white);

        jButton1.setText("Run...");
        jButton1.setToolTipText("Run Your Server");
        jButton1.setFocusPainted(false);

        jButton2.setText("Create...");
        jButton2.setToolTipText("Create The Server Using Th Downoaded Jar");
        jButton2.setFocusPainted(false);

        jButton3.setText("Configuration..");
        jButton3.setToolTipText("Configure The Server");
        jButton3.setFocusPainted(false);

        jButton4.setText("Download");
        jButton4.setToolTipText("Download The Jar From Official WebSite");
        jButton4.setBorderPainted(false);
        jButton4.setFocusPainted(false);
        jButton4.addMouseListener(new java.awt.event.MouseAdapter() {
            public void mouseClicked(java.awt.event.MouseEvent evt) {
                jButton4MouseClicked(evt);
            }
        });

        jProgressBar1.setToolTipText("The Progress Of Your Task");

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING,layout.createSequentialGroup()
                .addContainerGap(122,Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING,false)
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(jButton4)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                        .addComponent(jButton2)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                        .addComponent(jButton1)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                        .addComponent(jButton3))
                    .addComponent(jProgressBar1,javax.swing.GroupLayout.DEFAULT_SIZE,Short.MAX_VALUE))
                .addGap(125,125,125))
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING,layout.createSequentialGroup()
                .addContainerGap(130,Short.MAX_VALUE)
                .addComponent(jProgressBar1,javax.swing.GroupLayout.PREFERRED_SIZE,javax.swing.GroupLayout.PREFERRED_SIZE)
                .addGap(34,34,34)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(jButton1)
                    .addComponent(jButton2)
                    .addComponent(jButton3)
                    .addComponent(jButton4))
                .addGap(153,153,153))
        );

        pack();
    }// </editor-fold>                        

    private void jButton4MouseClicked(java.awt.event.MouseEvent evt) {                                      
        download task = new download();
        task.Task();
    }                                     

    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available,stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(MCSM1.class.getName()).log(java.util.logging.Level.SEVERE,null,ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(MCSM1.class.getName()).log(java.util.logging.Level.SEVERE,ex);
        } catch (illegalaccessexception ex) {
            java.util.logging.Logger.getLogger(MCSM1.class.getName()).log(java.util.logging.Level.SEVERE,ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(MCSM1.class.getName()).log(java.util.logging.Level.SEVERE,ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokelater(new Runnable() {
            public void run() {
                new MCSM1().setVisible(true);
            }
        });
    }

    // Variables declaration - do not modify                     
    public javax.swing.JButton jButton1;
    public javax.swing.JButton jButton2;
    public javax.swing.JButton jButton3;
    public javax.swing.JButton jButton4;
    public javax.swing.JProgressBar jProgressBar1;
    // End of variables declaration                   
    
}

这是我的下载类(我使用 This 方法在 jprogressbar 上显示进度):

package mcsm;

import java.io.bufferedoutputstream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.*;
public class download extends javax.swing.JFrame {

    public void Task() {

        MCSM1 jp = new MCSM1();
        JProgressBar jp1 = jp.jProgressBar1;
        try {
            URL url = new URL("https://cdn.getbukkit.org/spigot/spigot-1.16.5.jar");
            try {
                HttpURLConnection httpconnection = (HttpURLConnection)(url.openConnection());
                long completeFileSize = httpconnection.getContentLength();

                java.io.BufferedInputStream in = new java.io.BufferedInputStream(httpconnection.getInputStream());
                try {
                    byte[] data = new byte[1024];
                    long downloadedFileSize = 0;
                    int x = 0;
                    while ((x = in .read(data,1024)) >= 0) {
                        downloadedFileSize += x;
                        final int currentProgress = (int) ((((double)downloadedFileSize) / ((double)completeFileSize)) * 100000d);
                        // update progress bar
                        SwingUtilities.invokelater(new Runnable() {

                            @Override
                            public void run() {
                                jp1.setValue(currentProgress);
                            }
                        });
                    }
                } catch (IOException ioe) {
                    ioe.printstacktrace();
                }
            } catch (IOException ioe2) {

            }
        } catch (MalformedURLException mue) {
            mue.printstacktrace();
        }

        try {
            java.io.FileOutputStream fos = new java.io.FileOutputStream("Spigot.jar");
            java.io.bufferedoutputstream bout = new bufferedoutputstream(fos,1024);

        } catch (FileNotFoundException fnf) {
            fnf.printstacktrace();
        }



        // calculate progress

    }
}

如果你想运行它,你应该在 lib 文件夹中有这些:

enter image description here

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...