gpt4 book ai didi

scala - 解压缩存储在 Azure ADLS Gen2 中的 .Z 文件

转载 作者:行者123 更新时间:2023-12-05 07:07:18 25 4
gpt4 key购买 nike

我有一个 .Z 文件存储在 Azure ADLS Gen2 中。我想解压ADLS中的文件,我尝试使用ADF和C#解压,但发现不支持.Z。我也尝试使用Apache Common compress Lib进行解压,但无法读取InputStream中的文件。

任何人都可以知道如何使用 Scala 中的 Apache lib 解压缩文件。

最佳答案

.Z 文件是 .gzip 文件,因此您可以尝试此方法

import java.io.{BufferedReader, File, FileInputStream, InputStreamReader}
import java.util.zip.GZIPInputStream
object UnzipFiles {

def decompressGzipOrZFiles(file: File, encode: String): BufferedReader = {
val fis = new FileInputStream(file)
val gzis = new GZIPInputStream(fis)
val isr = new InputStreamReader(gzis, encode)
new BufferedReader(isr)
}

def main(args: Array[String]): Unit = {
val path = new File("/home/cloudera/files/my_file.Z")
// print to the console
decompressGzipOrZFiles(path,"UTF-8").lines().toArray.foreach(println)
}
}

或者你也可以遵循这个

    def uncompressGzip(myFileDotZorGzip: String): Unit = {
import java.io.FileInputStream
import java.util.zip.GZIPInputStream
try {
val gzipInputStream = new GZIPInputStream(new FileInputStream(myFileDotZorGzip))
try {
val tam = 128
val buffer = new Array[Byte](tam)
do {
gzipInputStream.read(buffer)
gzipInputStream.skip(tam)
//do something with data
print(buffer.foreach(b => print(b.toChar)))
} while(gzipInputStream.read() != -1)
} finally {
if (gzipInputStream != null) gzipInputStream.close()
}
}
}

我希望这会有所帮助。

关于scala - 解压缩存储在 Azure ADLS Gen2 中的 .Z 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62207685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com