Class MultipartInput
- java.lang.Object
-
- org.apache.commons.fileupload2.core.MultipartInput
-
public final class MultipartInput extends java.lang.Object
Low-level API for processing file uploads.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 = MultipartInput.builder() .setBoundary(boundary) .setInputStream(input) .get(); 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
Nested Classes Modifier and Type Class Description static classMultipartInput.BuilderBuilds a newMultipartInputinstance.static classMultipartInput.FileUploadBoundaryExceptionSignals an attempt to set an invalid boundary token.classMultipartInput.ItemInputStreamAnInputStreamfor reading an items contents.static classMultipartInput.MalformedStreamExceptionSignals that the input stream fails to follow the required syntax.static classMultipartInput.ProgressNotifierInternal class, which is used to invoke theProgressListener.
-
Field Summary
Fields Modifier and Type Field Description static byteCRThe Carriage Return ASCII character value.static byteDASHThe dash (-) ASCII character value.static intDEFAULT_PART_HEADER_SIZE_MAXDefault per part header size limit in bytes.static byteLFThe Line Feed ASCII character value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultipartInput.Builderbuilder()Constructs a newMultipartInput.Builder.longdiscardBodyData()Readsbody-datafrom the currentencapsulationand discards it.protected intfindByte(byte value, int pos)Searches for a byte of specified value in thebuffer, starting at the specifiedposition.protected intfindSeparator()Searches for theboundaryin thebufferregion delimited byheadandtail.java.nio.charset.CharsetgetHeaderCharset()Gets the character encoding used when reading the headers of an individual part.intgetPartHeaderSizeMax()Returns the per part size limit for headers.MultipartInput.ItemInputStreamnewInputStream()Creates a newMultipartInput.ItemInputStream.longreadBodyData(java.io.OutputStream output)Readsbody-datafrom the currentencapsulationand writes its contents into the outputStream.booleanreadBoundary()Skips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.bytereadByte()Reads a byte from thebuffer, and refills it as necessary.java.lang.StringreadHeaders()Reads theheader-partof the currentencapsulation.voidsetBoundary(byte[] boundary)Changes the boundary token used for partitioning the stream.voidsetHeaderCharset(java.nio.charset.Charset headerCharset)Sets the character encoding to be used when reading the headers of individual parts.booleanskipPreamble()Finds the beginning of the firstencapsulation.
-
-
-
Field Detail
-
CR
public static final byte CR
The Carriage Return ASCII character value.- See Also:
- Constant Field Values
-
LF
public static final byte LF
The Line Feed ASCII character value.- See Also:
- Constant Field Values
-
DASH
public static final byte DASH
The dash (-) ASCII character value.- See Also:
- Constant Field Values
-
DEFAULT_PART_HEADER_SIZE_MAX
public static final int DEFAULT_PART_HEADER_SIZE_MAX
Default per part header size limit in bytes.- Since:
- 2.0.0-M4
- See Also:
- Constant Field Values
-
-
Method Detail
-
builder
public static MultipartInput.Builder builder()
Constructs a newMultipartInput.Builder.- Returns:
- a new
MultipartInput.Builder.
-
discardBodyData
public long discardBodyData() throws MultipartInput.MalformedStreamException, java.io.IOException
Readsbody-datafrom the currentencapsulationand 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.java.io.IOException- if an i/o error occurs.
-
findByte
protected int findByte(byte value, int pos)
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-1if not found.
-
findSeparator
protected int findSeparator()
Searches for theboundaryin thebufferregion delimited byheadandtail.- Returns:
- The position of the boundary found, counting from the beginning of the
buffer, or-1if not found.
-
getHeaderCharset
public java.nio.charset.Charset 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.
-
getPartHeaderSizeMax
public int getPartHeaderSizeMax()
Returns the per part size limit for headers.- Returns:
- The maximum size of the headers in bytes.
- Since:
- 2.0.0-M4
-
newInputStream
public MultipartInput.ItemInputStream newInputStream()
Creates a newMultipartInput.ItemInputStream.- Returns:
- A new instance of
MultipartInput.ItemInputStream.
-
readBodyData
public long readBodyData(java.io.OutputStream output) throws MultipartInput.MalformedStreamException, java.io.IOException
Readsbody-datafrom the currentencapsulationand 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- TheStreamto 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.java.io.IOException- if an i/o error occurs.
-
readBoundary
public boolean readBoundary() throws FileUploadSizeException, MultipartInput.MalformedStreamException
Skips aboundarytoken, and checks whether moreencapsulationsare contained in the stream.- Returns:
trueif there are more encapsulations in this stream;falseotherwise.- 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
public byte readByte() throws java.io.IOException
Reads a byte from thebuffer, and refills it as necessary.- Returns:
- The next byte from the input stream.
- Throws:
java.io.IOException- if there is no more data available.
-
readHeaders
public java.lang.String readHeaders() throws FileUploadSizeException, MultipartInput.MalformedStreamException
Reads theheader-partof the currentencapsulation.Headers are returned verbatim to the input stream, including the trailing
CRLFmarker. Parsing is left to the application.TODO allow limiting maximum header size to protect against abuse.
- Returns:
- The
header-partof the current encapsulation. - Throws:
FileUploadSizeException- if the bytes read from the stream exceeded the size limits.MultipartInput.MalformedStreamException- if the stream ends unexpectedly.
-
setBoundary
public void setBoundary(byte[] boundary) throws MultipartInput.FileUploadBoundaryException
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
requiredto 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 theboundaryhas a different length than the one being currently parsed.
-
setHeaderCharset
public void setHeaderCharset(java.nio.charset.Charset headerCharset)
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
public boolean skipPreamble() throws java.io.IOException
Finds the beginning of the firstencapsulation.- Returns:
trueif anencapsulationwas found in the stream.- Throws:
java.io.IOException- if an i/o error occurs.
-
-