Copyright | Galois, Inc. 2012-2014 |
---|---|
License | BSD3 |
Maintainer | atomb@galois.com |
Stability | stable |
Portability | non-portable |
Safe Haskell | None |
Language | Haskell98 |
A quick-n-dirty reader for JAR files. MANY keep-it-simple concessions have been made regarding the zip structure of jars (e.g. no ZIP64, Deflate-type compression only, etc., etc.). Please don't mistake this module for any kind of fully-fledged unzip implementation!
Info on the zip file format can be found at: http://www.pkware.com/documents/casestudies/APPNOTE.TXT
Documentation
Datatype representing a collection of .jar archives.
Classfiles can be loaded from a JarReader using loadClassFromJar
.
JR | |
|
dumpJarReader :: JarReader -> IO () Source
Print all the directory entries known to this JarReader onto the console
Load a class from the given JarReader.