import org.apache.commons.compress.compressors.gzip.*
// tgzファイルオープン
fn = "test.tgz"
fis = new FileInputStream(fn)
// 書き込みファイルオープン
fos = new FileOutputStream(
".\\out\\" +
GzipUtils.getUncompressedFilename(fn)
)
gcis = new GzipCompressorInputStream(fis)
// 解凍
buf = new byte[8192]
int rs = -1;
while( (rs = gcis.read(buf)) != -1 ){
fos.write(buf, 0, rs)
}
gcis.close()
fos.close()
動作環境
groovy 1.7.4, JDK6 Update21, Apache Commons Compress 1.1
0 件のコメント:
コメントを投稿