524525526527528529530531532533534
try { os = target.putNextEntry(entryName); FileUtils.copy(is, os, source.getEntrySize(entryName)); } finally { if (os!=null) { target.closeEntry(); } is.close(); } } }
537538539540541542543544545546547
Manifest m = source.getManifest(); if (m!=null) { processManifest(m, moduleName); OutputStream os = target.putNextEntry(JarFile.MANIFEST_NAME); m.write(os); target.closeEntry(); } source.close(); target.close();
412413414415416417418419420421422
try { os = target.putNextEntry(moduleJar.getName()); FileUtils.copy(is, os, moduleJar.length()); } finally { if (os!=null) { target.closeEntry(); } is.close(); } } }
449450451452453454455456457458459
463464465466467468469470471472473
Manifest m = source.getManifest(); if (m!=null) { processManifest(m, appName); OutputStream os = target.putNextEntry(JarFile.MANIFEST_NAME); m.write(os); target.closeEntry(); } source.close(); target.close();
520521522523524525526527528529530
533534535536537538539540541542543
420421422423424425426427428429430
457458459460461462463464465466467
471472473474475476477478479480481