我有一个包含.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文件?