Searched refs:fos (Results 1 – 3 of 3) sorted by relevance
188 try (FileOutputStream fos = new FileOutputStream(outFile)) { in toFile() argument191 FileUtils.writeByteToOutFile(zipEntryData.getZipEntryHeader().toBytes(), fos); in toFile() local192 boolean isSuccess = FileUtils.appendWriteFileByOffsetToFile(file, fos, in toFile()198 FileUtils.writeByteToOutFile(zipEntryData.getDataDescriptor().toBytes(), fos); in toFile() local202 FileUtils.writeByteToOutFile(signingBlock, fos); in toFile()206 FileUtils.writeByteToOutFile(cd.toBytes(), fos); in toFile() local208 FileUtils.writeByteToOutFile(endOfCentralDirectory.toBytes(), fos); in toFile() local
210 FileOutputStream fos = null; in unzip() local237 fos = new FileOutputStream(newFile); in unzip()238 bos = new BufferedOutputStream(fos, BUFFER_SIZE); in unzip()250 fos.close(); in unzip()257 closeStream(fos); in unzip()
286 try (FileOutputStream fos = new FileOutputStream(keyStorePath)){ in store() argument288 keyStore.store(fos, keyStorePwd); in store()289 fos.flush(); in store()