pOutput.write(content);
pOutput.closeArchiveEntry();
}
private void addTo(ArArchiveOutputStream pOutput, String pName, File pContent) throws IOException {
pOutput.putArchiveEntry(new ArArchiveEntry(pName, pContent.length()));
final InputStream input = new FileInputStream(pContent);
try {
Utils.copy(input, pOutput);
} finally {