public class DumpArchiveInputStream extends ArchiveInputStream
Constructor and Description |
---|
DumpArchiveInputStream(java.io.InputStream is)
Constructor using the platform's default encoding for file
names.
|
DumpArchiveInputStream(java.io.InputStream is,
java.lang.String encoding)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the stream for this entry.
|
long |
getBytesRead()
Returns the current number of bytes read from this stream.
|
int |
getCount()
Deprecated.
|
DumpArchiveEntry |
getNextDumpEntry()
Read the next entry.
|
DumpArchiveEntry |
getNextEntry()
Returns the next Archive Entry in this Stream.
|
DumpArchiveSummary |
getSummary()
Return the archive summary information.
|
static boolean |
matches(byte[] buffer,
int length)
Look at the first few bytes of the file to decide if it's a dump
archive.
|
int |
read(byte[] buf,
int off,
int len)
Reads bytes from the current dump archive entry.
|
canReadEntryData, read
public DumpArchiveInputStream(java.io.InputStream is) throws ArchiveException
is
- stream to read fromArchiveException
- on errorpublic DumpArchiveInputStream(java.io.InputStream is, java.lang.String encoding) throws ArchiveException
is
- stream to read fromencoding
- the encoding to use for file names, use null
for the platform's default encodingArchiveException
- on error@Deprecated public int getCount()
ArchiveInputStream
getCount
in class ArchiveInputStream
public long getBytesRead()
ArchiveInputStream
getBytesRead
in class ArchiveInputStream
public DumpArchiveSummary getSummary()
public DumpArchiveEntry getNextDumpEntry() throws java.io.IOException
java.io.IOException
- on errorpublic DumpArchiveEntry getNextEntry() throws java.io.IOException
ArchiveInputStream
getNextEntry
in class ArchiveInputStream
null
if there are no more entriesjava.io.IOException
- if the next entry could not be readpublic int read(byte[] buf, int off, int len) throws java.io.IOException
read
in class java.io.InputStream
buf
- The buffer into which to place bytes read.off
- The offset at which to place bytes read.len
- The number of bytes to read.java.io.IOException
- on errorpublic void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.InputStream
java.io.IOException
public static boolean matches(byte[] buffer, int length)
buffer
- data to matchlength
- length of data"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"