我正在通过GZIPInputStream读取一个gzip压缩文件。我想一次读取大量数据,但无论我要求GZIPInputStream读取多少字节,它总是读取少得多的字节数。例如,
val bArray = new Array[Byte](81920)
val fis = new FileInputStream(new File(inputFileName))
val gis = new GZIPInputStream(fis)
val bytesRead = gis.read(bArray)
读取的字节总是大约1800字节,而它应该几乎等于bArray的大小,在这种情况下是81920。为什么会这样?有没有办法解决这个问题,真的有更多的字节读取?
答案 0 :(得分:2)
如果您有大量数据,我会尝试使用akka-stream。
implicit val system = ActorSystem()
implicit val ec = system.dispatcher
implicit val materializer = ActorMaterializer()
val fis = new FileInputStream(new File(""))
val gis = new GZIPInputStream(fis)
val bfs: BufferedSource = Source.fromInputStream(gis)
bfs
公开Flow
api进行流处理。
您还可以从中获取信息流:
val ss: Stream[String] = bfs.bufferedReader().lines()
答案 1 :(得分:1)
读取可能总是返回比您要求的字节数更少的字节,因此通常您必须循环播放,尽可能多地读取。
换句话说,给GZIPInputStream
一个大缓冲区并不代表它会在给定的请求中被填充。
import java.util.zip.GZIPInputStream
import java.io.FileInputStream
import java.io.File
import java.io.InputStream
import java.io.FilterInputStream
object Unzipped extends App {
val inputFileName = "/tmp/sss.gz"
val bArray = new Array[Byte](80 * 1024)
val fis = new FileInputStream(new File(inputFileName))
val stingy = new StingyInputStream(fis)
val gis = new GZIPInputStream(stingy, 80 * 1024)
val bytesRead = gis.read(bArray, 0, bArray.length)
println(bytesRead)
}
class StingyInputStream(is: InputStream) extends FilterInputStream(is) {
override def read(b: Array[Byte], off: Int, len: Int) = {
val n = len.min(1024)
super.read(b, off, n)
}
}
相反,loop to drain而不是发出一个读取:
import reflect.io.Streamable.Bytes
val sb = new Bytes {
override val length = 80 * 1024L
override val inputStream = gis
}
val res = sb.toByteArray()
println(res.length) // your explicit length
我并不是说要使用API,它只是为了演示。我懒得写一个循环。
答案 2 :(得分:0)
好的,我找到了解决方案。 GZIPInputStream的构造函数版本也采用缓冲区的大小。