Obtain an InputStream for a given entry in a JAR. The caller is responsible for closing the stream. @param name Entry to obtain an InputStream for @return An InputStream for the specified entry or null if the entry does not exist @throws IOException if an I/O error occurs
(String name)
| 49 | * @throws IOException if an I/O error occurs while processing the JAR file |
| 50 | */ |
| 51 | InputStream getInputStream(String name) throws IOException; |
| 52 | |
| 53 | /** |
| 54 | * Obtain the last modified time for the JAR. |
no outgoing calls