* @throws FileNotLoadedException if load has not been executed yet.
*/
public byte[] readInArchive(String filename)
throws IOException, FileNotLoadedException {
if (archive == null) {
throw new FileNotLoadedException("Archive must be loaded first.");
}
ZipEntry entry = archive.getEntry(filename);
return readEntry(archive, entry);
}