ZipEntry中的ZipInputStream.read

时间:2017-06-15 23:35:13

标签: scala zipinputstream

我正在使用ZipInputStream阅读zip文件。 Zip文件有4个csv文件。有些文件是完全写的,有些是部分写的。请帮我找到以下代码的问题。从ZipInputStream.read方法读取缓冲区有什么限制吗?

val zis = new ZipInputStream(inputStream)
Stream.continually(zis.getNextEntry).takeWhile(_ != null).foreach { file =>
      if (!file.isDirectory && file.getName.endsWith(".csv")) {
        val buffer = new Array[Byte](file.getSize.toInt)
        zis.read(buffer)
        val fo = new FileOutputStream("c:\\temp\\input\\" + file.getName)
        fo.write(buffer)
 }

1 个答案:

答案 0 :(得分:0)

您没有close d / flush编辑您尝试写入的文件。它应该是这样的(假设Scala语法,或者这个Kotlin / Ceylon?):

    val fo = new FileOutputStream("c:\\temp\\input\\" + file.getName)
    try {
      fo.write(buffer)
    } finally {
      fo.close
    }

此外,您应该检查读取计数并在必要时阅读更多内容,如下所示:

var readBytes = 0
while (readBytes < buffer.length) {
  val r = zis.read(buffer, readBytes, buffer.length - readBytes)
  r match {
    case -1 => throw new IllegalStateException("Read terminated before reading everything")
    case _ => readBytes += r
  }
}

PS:在你的例子中,它似乎低于要求关闭} s。