在Python中的zip文件中提取txz文件

时间:2019-03-15 14:33:27

标签: python zipfile tarfile

我有一个包含.txz文件的zip文件。像这样的东西:

public <T> StudentResponseReport<?> convert(long roundId, T response) {
    // If T is a String, then create an instance of StudentResponseReportSAQ
    // If T is a Collection<Integer>, then create an instance of StudentResponseReportMCQ
}

我已经使用 file1.zip | -- file2.txz | -- abc.txt 来提取file1.zip的内容,如下所示:

ZipFile

但是使用此file2.txz是空的,具有0个字节,尽管正确提取了abc.txt。
如何正确提取此txz文件?

0 个答案:

没有答案