*/
public String extractContent(String entryName) throws IOException,
JahiaArchiveFileException {
if (!entryExists(entryName))
throw new JahiaArchiveFileException(JahiaException.ENTRY_NOT_FOUND);
ZipEntry entry = m_JarFile.getEntry(entryName);
StringWriter out = new StringWriter();
IOUtils.copy(m_JarFile.getInputStream(entry), out);