204205206207208209210211212213214
while (fis.read(b) > 0) { tos.write(b); } fis.close(); fis = null; tos.closeArchiveEntry(); tos.close(); tos = null; tis = new CpioArchiveInputStream(new FileInputStream(archive)); CpioArchiveEntry out = tis.getNextCPIOEntry(); tis.close();
255256257258259260261262263264265