有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何在代码中放置inputstream progressmonitor?

我试图将progressmonitor inputstream放入我的代码中,但我所做的一切都做不到。我对java编程非常陌生,在代码中实现某些东西时遇到一些困难

除了无法使用inputstream之外,代码还可以按照我需要的方式正常工作。因此,我希望看到下载进度,因为在下载失败或服务器关闭的情况下,它会出现异常

/*
 * 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 javatar.language.download;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import javax.swing.JOptionPane;

/**
 *
 * @author Bruno
 */
public class UrlInput {

    public static void main(String[] args) {

        String userSys = System.getenv("USERNAME");
        String sysDrive = System.getenv("SYSTEMDRIVE");
        String downPath = sysDrive + "/Users/" + userSys + "/Downloads";

        try {

            URL url = new URL("http://akamai-gamecdn.blackdesertonline.com/live001/game/config/config.language.version");

            try ( // read text returned by server
                    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()))) {
                String line;

                while ((line = in.readLine()) != null) {

                    String versao = line;

                    JOptionPane.showMessageDialog(null, "Actual version BDO-NA: " + versao);

                    String fileURL = "http://akamai-gamecdn.blackdesertonline.com/live001/game/language/BDOLanguage_" + versao + ".zip";

                    String saveDIR = downPath;

                    SysDownload.downloadFile(fileURL, saveDIR);
                }
            }

        } catch (MalformedURLException e) {
            JOptionPane.showMessageDialog(null, "Malformed URL: " + e.getMessage());
        } catch (IOException e) {
            JOptionPane.showMessageDialog(null, "Error I/O: " + e.getMessage());
        }

    }

}



/*
 * 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 javatar.language.download;

import java.io.*;
import java.net.*;
import javax.swing.*;

/**
 *
 * @author Bruno
 */
public class SysDownload {

    private static final int BUFFER_SIZE = 4096;

    public static void downloadFile(String fileURL, String saveDIR) throws IOException {

        URL link = new URL(fileURL);

        HttpURLConnection conn = (HttpURLConnection) link.openConnection();

        int responseCode = conn.getResponseCode();

        if (responseCode == HttpURLConnection.HTTP_OK) {

            String fileName = "";
            String server = conn.getHeaderField("Server");
            String connectionType = conn.getContentType();
            int contentLenght = conn.getContentLength();

            JOptionPane.showMessageDialog(null, "Server name: " + server);

            if (server != null) {

                int index = server.indexOf("filename");
                if (index > 0) {
                    fileName = server.substring(index + 10, server.length() - 1);
                } else {
                    fileName = fileURL.substring(fileURL.lastIndexOf("/") + 1, fileURL.length());
                }

                try (InputStream inputStream = conn.getInputStream()) {

                    String savePath = saveDIR + File.separator + fileName;

                    try (FileOutputStream outputStream = new FileOutputStream(savePath)) {

                        int bytesRead = - 1;

                        byte[] buffer = new byte[BUFFER_SIZE];

                        while ((bytesRead = inputStream.read(buffer)) != -1) {

                            outputStream.write(buffer, 0, bytesRead);

                        }

                    }

                }

                JOptionPane.showMessageDialog(null, "File " + fileName + " has been downloaded.\nSee users Download folder.");
            } else {
                JOptionPane.showMessageDialog(null, "None file downloaded.\nServer HTTP code: " + responseCode + JOptionPane.ERROR_MESSAGE);

            }

            conn.disconnect();

        }

    }

}


共 (1) 个答案

  1. # 1 楼答案

    首先,咨询the documentation of ProgressMonitorInputStream

    • 构造函数需要三个参数。与JOptionPane一样,第一个参数是对话框父级,在应用程序中它看起来是null
    • 第二个参数是消息。在您的情况下,"Downloading " + link可能就足够了
    • 第三个参数是要监视的InputStream。这应该是您正在下载的InputStream

    ProgressMonitor的最大值应该是下载的大小,您可以从URLConnection的getContentLength()方法获得

    无需编写循环即可将InputStream保存到文件中。你可以用Files.copy来做这个

    所以,把它们放在一起,看起来是这样的:

    try (ProgressMonitorInputStream inputStream =
            new ProgressMonitorInputStream(null,
                "Downloading " + link,
                conn.getInputStream())) {
    
        inputStream.getProgressMonitor().setMaximum(conn.getContentLength());
        Files.copy(inputStream, Paths.get(savePath));
    }