Class MultipartInput
This class can be used to process data streams conforming to MIME 'multipart' format as defined in RFC 1867. Arbitrarily large amounts of data in the stream can be processed under constant memory usage.
The format of the stream is defined in the following way:
multipart-body := preamble 1*encapsulation close-delimiter epilogue
encapsulation := delimiter body CRLF
delimiter := "--" boundary CRLF
close-delimiter := "--" boundary "--"
preamble := <ignore>
epilogue := <ignore>
body := header-part CRLF body-part
header-part := 1*header CRLF
header := header-name ":" header-value
header-name := <printable ASCII characters except ":">
header-value := <any ASCII characters except CR & LF>
body-data := <arbitrary data>
Note that body-data can contain another mulipart entity. There is limited support for single pass processing of such nested streams. The nested stream is
required to have a boundary token of the same length as the parent stream (see setBoundary(byte[])
).
Here is an example of usage of this class:
try { MultipartInput multipartStream = new MultipartInput(input, boundary); boolean nextPart = multipartStream.skipPreamble(); OutputStream output; while (nextPart) { String header = multipartStream.readHeaders(); // process headers // create some output stream multipartStream.readBodyData(output); nextPart = multipartStream.readBoundary(); } } catch (MultipartInput.MalformedStreamException e) { // the stream failed to follow required syntax } catch (IOException e) { // a read or write error occurred }
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builds a newMultipartInput
instance.static class
Signals an attempt to set an invalid boundary token.class
AnInputStream
for reading an items contents.static class
Signals that the input stream fails to follow the required syntax.static class
Internal class, which is used to invoke theProgressListener
. -
Field Summary
Modifier and TypeFieldDescriptionstatic final byte
The Carriage Return ASCII character value.static final byte
The dash (-) ASCII character value.static final int
The maximum length ofheader-part
that will be processed (10 kilobytes = 10240 bytes.).static final byte
The Line Feed ASCII character value. -
Method Summary
Modifier and TypeMethodDescriptionstatic MultipartInput.Builder
builder()
Constructs a newMultipartInput.Builder
.long
Readsbody-data
from the currentencapsulation
and discards it.protected int
findByte
(byte value, int pos) Searches for a byte of specified value in thebuffer
, starting at the specifiedposition
.protected int
Searches for theboundary
in thebuffer
region delimited byhead
andtail
.Gets the character encoding used when reading the headers of an individual part.Creates a newMultipartInput.ItemInputStream
.long
readBodyData
(OutputStream output) Readsbody-data
from the currentencapsulation
and writes its contents into the outputStream
.boolean
Skips aboundary
token, and checks whether moreencapsulations
are contained in the stream.byte
readByte()
Reads a byte from thebuffer
, and refills it as necessary.Reads theheader-part
of the currentencapsulation
.void
setBoundary
(byte[] boundary) Changes the boundary token used for partitioning the stream.void
setHeaderCharset
(Charset headerCharset) Sets the character encoding to be used when reading the headers of individual parts.boolean
Finds the beginning of the firstencapsulation
.
-
Field Details
-
CR
The Carriage Return ASCII character value.- See Also:
-
LF
The Line Feed ASCII character value.- See Also:
-
DASH
The dash (-) ASCII character value.- See Also:
-
HEADER_PART_SIZE_MAX
The maximum length ofheader-part
that will be processed (10 kilobytes = 10240 bytes.).- See Also:
-
-
Method Details
-
builder
Constructs a newMultipartInput.Builder
.- Returns:
- a new
MultipartInput.Builder
.
-
discardBodyData
Readsbody-data
from the currentencapsulation
and discards it.Use this method to skip encapsulations you don't need or don't understand.
- Returns:
- The amount of data discarded.
- Throws:
MultipartInput.MalformedStreamException
- if the stream ends unexpectedly.IOException
- if an i/o error occurs.
-
findByte
Searches for a byte of specified value in thebuffer
, starting at the specifiedposition
.- Parameters:
value
- The value to find.pos
- The starting position for searching.- Returns:
- The position of byte found, counting from beginning of the
buffer
, or-1
if not found.
-
findSeparator
Searches for theboundary
in thebuffer
region delimited byhead
andtail
.- Returns:
- The position of the boundary found, counting from the beginning of the
buffer
, or-1
if not found.
-
getHeaderCharset
Gets the character encoding used when reading the headers of an individual part. When not specified, ornull
, the platform default encoding is used.- Returns:
- The encoding used to read part headers.
-
newInputStream
Creates a newMultipartInput.ItemInputStream
.- Returns:
- A new instance of
MultipartInput.ItemInputStream
.
-
readBodyData
public long readBodyData(OutputStream output) throws MultipartInput.MalformedStreamException, IOException Readsbody-data
from the currentencapsulation
and writes its contents into the outputStream
.Arbitrary large amounts of data can be processed by this method using a constant size buffer. (see
builder()
).- Parameters:
output
- TheStream
to write data into. May be null, in which case this method is equivalent todiscardBodyData()
.- Returns:
- the amount of data written.
- Throws:
MultipartInput.MalformedStreamException
- if the stream ends unexpectedly.IOException
- if an i/o error occurs.
-
readBoundary
public boolean readBoundary() throws FileUploadSizeException, MultipartInput.MalformedStreamExceptionSkips aboundary
token, and checks whether moreencapsulations
are contained in the stream.- Returns:
true
if there are more encapsulations in this stream;false
otherwise.- Throws:
FileUploadSizeException
- if the bytes read from the stream exceeded the size limitsMultipartInput.MalformedStreamException
- if the stream ends unexpectedly or fails to follow required syntax.
-
readByte
Reads a byte from thebuffer
, and refills it as necessary.- Returns:
- The next byte from the input stream.
- Throws:
IOException
- if there is no more data available.
-
readHeaders
Reads theheader-part
of the currentencapsulation
.Headers are returned verbatim to the input stream, including the trailing
CRLF
marker. Parsing is left to the application.- Returns:
- The
header-part
of the current encapsulation. - Throws:
FileUploadSizeException
- if the bytes read from the stream exceeded the size limits.MultipartInput.MalformedStreamException
- if the stream ends unexpectedly.
-
setBoundary
Changes the boundary token used for partitioning the stream.This method allows single pass processing of nested multipart streams.
The boundary token of the nested stream is
required
to be of the same length as the boundary token in parent stream.Restoring the parent stream boundary token after processing of a nested stream is left to the application.
- Parameters:
boundary
- The boundary to be used for parsing of the nested stream.- Throws:
MultipartInput.FileUploadBoundaryException
- if theboundary
has a different length than the one being currently parsed.
-
setHeaderCharset
Sets the character encoding to be used when reading the headers of individual parts. When not specified, ornull
, the platform default encoding is used.- Parameters:
headerCharset
- The encoding used to read part headers.
-
skipPreamble
Finds the beginning of the firstencapsulation
.- Returns:
true
if anencapsulation
was found in the stream.- Throws:
IOException
- if an i/o error occurs.
-