5

在 R 中,我可以将整个压缩文本文件读入字符向量

readLines("file.txt.bz2")

readLines透明地解压缩 .gz 和 .bz2 文件,但也适用于非压缩文件。朱莉娅有类似的东西吗?我可以

text = open(f -> read(f, String), "file.txt")

但这无法打开压缩文件。读取 bzip2 文件的首选方法是什么?有没有可以自动推断压缩格式的方法(除了手动检查文件扩展名)?

4

1 回答 1

4

我不知道任何自动的东西,但这就是您可以(创建和)读取 bz2 压缩文件的方式:

using CodecBzip2 # after ] add CodecBzip2

# Creating a dummy bz2 file
mystring = "Hello StackOverflow!"
mystring_compressed = transcode(Bzip2Compressor, mystring)
write("testfile.bz2", mystring_compressed)

# Reading and uncompressing it
compressed = read("testfile.bz2")
plain = transcode(Bzip2Decompressor, compressed)
String(plain) # "Hello StackOverflow!"

还有可用的流媒体变体。有关更多信息,请参阅CodecBzip2.jl

于 2020-03-07T09:30:40.367 回答