Java http下载破坏文件

时间:2009-01-28 13:35:05

标签: java http download

我有一个问题,我似乎无法解决... 我做一个文件的http下载,但服务器和客户端上的文件的CRC32不匹配。此外,文件有不同的大小,所以显然我一定做错了...当我通过Firefox下载时,文件大小没问题......所以我猜它是在客户端代码中的某个地方。

我已经找到了Corrupt file when using Java to download file,但这对我没有帮助......

以下是代码:

private void downloadJar(String fileName, long crc32Server) throws IOException {
  System.out.println("Downloading file '" + fileName + "' from server '" + mServer + "'.");
  HttpURLConnection sourceConnection = null;
  BufferedInputStream inputStream = null;
  BufferedWriter fileWriter = null;
  long crc32Client;
  try {
    URL sourceURL = new URL(fileName);
    try {
      sourceConnection = (HttpURLConnection)sourceURL.openConnection();
    }
    catch (MalformedURLException exc) {
      throw new RuntimeException("Configured URL caused a MalformedURLException: ", exc);
    }
    sourceConnection.setRequestProperty("Accept-Encoding", "zip, jar");
    sourceConnection.connect();
    inputStream = new BufferedInputStream(sourceConnection.getInputStream());
    fileWriter = new BufferedWriter(new FileWriter(targetFolder + File.separator + fileName));
    CRC32 crc32 = new CRC32();
    for (int singleByte = inputStream.read(); singleByte != -1; singleByte = inputStream.read()) {
      fileWriter.write(singleByte);
      crc32.update(singleByte);
    }
    crc32Client = crc32.getValue();
  }
  finally {
    if (inputStream != null) {
      inputStream.close();
    }
    if (fileWriter != null) {
      fileWriter.flush();
      fileWriter.close();
    }
    if (sourceConnection != null) {
      sourceConnection.disconnect();
    }
  }
  if (crc32Client != crc32Server) {
    //      deleteFile(fileName);
    throw new IOException("CRC32 did not match for file '" + fileName + "': " + crc32Client + "!="
        + crc32Server);
  }
}

1 个答案:

答案 0 :(得分:6)

您应该使用BufferedOutputStream而不是FileWriter / BufferedWriter。通常,*Streams处理原始二进制数据,而*Writers处理字符数据(这是对给定字符编码的原始二进制数据的解释)。