|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.InputStream java.io.FilterInputStream org.apache.axis.attachments.BoundaryDelimitedStream
This class takes the input stream and turns it multiple streams.
Method Summary | |
int |
available()
|
void |
close()
Closes the stream. |
BoundaryDelimitedStream |
getNextStream()
Gets the next stream. |
void |
mark(int readlimit)
mark the stream. |
boolean |
markSupported()
markSupported return false; |
static void |
printarry(byte[] b,
int start,
int end)
Method printarry |
int |
read()
Read from the boundary delimited stream. |
int |
read(byte[] b)
Read from the boundary delimited stream. |
int |
read(byte[] b,
int off,
int len)
Read from the boundary delimited stream. |
void |
reset()
reset the stream. |
Methods inherited from class java.io.FilterInputStream |
skip |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public BoundaryDelimitedStream getNextStream() throws java.io.IOException
java.io.IOException
- if there was an error loading the data for
the next streampublic int read(byte[] b, int off, int len) throws java.io.IOException
b
- is the array to read into.off
- is the offsetlen
-
java.io.IOException
public int read(byte[] b) throws java.io.IOException
b
- is the array to read into. Read as much as possible
into the size of this array.
java.io.IOException
public int read() throws java.io.IOException
java.io.IOException
public void close() throws java.io.IOException
java.io.IOException
public void mark(int readlimit)
readlimit
- public void reset() throws java.io.IOException
java.io.IOException
public boolean markSupported()
public int available() throws java.io.IOException
java.io.IOException
public static void printarry(byte[] b, int start, int end)
b
- start
- end
-
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |