while ((entry = m_zin.getNextEntry()) != null) {
FileUtils.copy(m_zin, new FileOutputStream(new File(m_tempDir, entry.getName())));
}
in = new FileInputStream(new File(m_tempDir, "atommanifest.xml"));
} catch (FileNotFoundException e) {
throw new StreamIOException(e.getMessage(), e);
} catch (IOException e) {
throw new StreamIOException(e.getMessage(), e);
}
}
Parser parser = abdera.getParser();
Document<Feed> feedDoc = parser.parse(in);