繁体   English   中英

路径中包含空格的已下载文件已损坏

[英]Downloaded files with whitespaces in path are damaged

我有以下问题。 我必须从服务器下载pdf文件,其中一些文件的名称中包含空格。 因此,将下载每个文件,但是带有空白的文件无法打开。

如果我通过chrome在服务器上访问此文件,它们会很好打开(也使用url中的空格)。

我想知道的是,java表示将下载文件。 但是,当我尝试在Acrobat Reader中打开它们时,它显示了一条错误消息,表明文件已损坏。 这是我的代码示例:

public static void downloadFile(String fileURL, String saveDir) throws IOException {
    Authenticator.setDefault(new Authenticator() {
        @Override
        protected PasswordAuthentication getPasswordAuthentication() {          
            return new PasswordAuthentication("*****", "*********".toCharArray());
        }
    });

    final int BUFFER_SIZE = 4096;
    URL url = new URL(fileURL);
    HttpURLConnection httpConn = (HttpURLConnection) url.openConnection();
    String credentials = "ptt" + ":" + "ptt123";
    String encoding = Base64.getEncoder().encodeToString(credentials.getBytes(StandardCharsets.UTF_8));
    httpConn.setRequestProperty("Authorization", String.format("Basic %s", encoding));
    int responseCode = 0;
    responseCode = httpConn.getResponseCode();
    // always check HTTP response code first
    if (responseCode == HttpURLConnection.HTTP_OK) {
        String fileName = "";
        String disposition = httpConn.getHeaderField("Content-Disposition");
        String contentType = httpConn.getContentType();
        int contentLength = httpConn.getContentLength();

        if (disposition != null) {
            // extracts file name from header field
            int index = disposition.indexOf("filename=");
            if (index > 0) {
                fileName = disposition.substring(index + 10,
                        disposition.length() - 1);
            }
        } else {
            // extracts file name from URL
            fileName = fileURL.substring(fileURL.lastIndexOf("/") + 1,
            fileURL.length());
        }



        // opens input stream from the HTTP connection
        InputStream inputStream = httpConn.getInputStream();
        String saveFilePath = saveDir + File.separator + fileName;

        // opens an output stream to save into file
        FileOutputStream outputStream = new FileOutputStream(saveFilePath);

        int bytesRead = -1;
        byte[] buffer = new byte[BUFFER_SIZE];
        while ((bytesRead = inputStream.read(buffer)) != -1) {
            outputStream.write(buffer, 0, bytesRead);
        }

        outputStream.close();
        inputStream.close();

        System.out.println("File downloaded");
    } else {
        System.out.println("No file to download. Server replied HTTP code: " + responseCode);
    }
    httpConn.disconnect();
}

我还尝试通过fileUrl中的“%20”替换空白。 那么可能是什么问题呢? 就像我上面写的,没有任何空格的文件可以在下载后打开而没有任何问题。

我使用Java 1.7。

干杯,

安德烈(Andrej)

如果fileName包含空格,则将其替换为其他字符。 可能会奏效,否则请通知我。

if(fileName.trim().contains(" "))
    fileName.replace(" ","_");

URL url = new URL(URLEncoder.encode(fileUrl, "UTF-8"));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM