- java.lang.Object
-
- org.eclipse.jetty.http.MultiPartFormInputStream
-
public class MultiPartFormInputStream extends java.lang.Object
MultiPartInputStreamHandle a MultiPart Mime input stream, breaking it up on the boundary into files and strings.
- See Also:
- https://tools.ietf.org/html/rfc7578
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
MultiPartFormInputStream.MultiPart
-
Constructor Summary
Constructors Constructor Description MultiPartFormInputStream(java.io.InputStream in, java.lang.String contentType, javax.servlet.MultipartConfigElement config, java.io.File contextTmpDir)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deleteParts()
Delete any tmp storage for parts, and clear out the parts list.int
getBufferSize()
javax.servlet.http.Part
getPart(java.lang.String name)
Get the named Part.java.util.Collection<javax.servlet.http.Part>
getParts()
Parse, if necessary, the multipart data and return the list of Parts.boolean
isDeleteOnExit()
boolean
isEmpty()
boolean
isWriteFilesWithFilenames()
protected void
parse()
Parse, if necessary, the multipart stream.void
setBufferSize(int bufferSize)
void
setDeleteOnExit(boolean deleteOnExit)
void
setWriteFilesWithFilenames(boolean writeFilesWithFilenames)
protected void
throwIfError()
Throws an exception if one has been latched.
-
-
-
Constructor Detail
-
MultiPartFormInputStream
public MultiPartFormInputStream(java.io.InputStream in, java.lang.String contentType, javax.servlet.MultipartConfigElement config, java.io.File contextTmpDir)
- Parameters:
in
- Request input streamcontentType
- Content-Type headerconfig
- MultipartConfigElementcontextTmpDir
- javax.servlet.context.tempdir
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
- Returns:
- whether the list of parsed parts is empty
-
deleteParts
public void deleteParts()
Delete any tmp storage for parts, and clear out the parts list.
-
getParts
public java.util.Collection<javax.servlet.http.Part> getParts() throws java.io.IOException
Parse, if necessary, the multipart data and return the list of Parts.- Returns:
- the parts
- Throws:
java.io.IOException
- if unable to get the parts
-
getPart
public javax.servlet.http.Part getPart(java.lang.String name) throws java.io.IOException
Get the named Part.- Parameters:
name
- the part name- Returns:
- the parts
- Throws:
java.io.IOException
- if unable to get the part
-
throwIfError
protected void throwIfError() throws java.io.IOException
Throws an exception if one has been latched.- Throws:
java.io.IOException
- the exception (if present)
-
parse
protected void parse()
Parse, if necessary, the multipart stream.
-
setDeleteOnExit
public void setDeleteOnExit(boolean deleteOnExit)
-
setWriteFilesWithFilenames
public void setWriteFilesWithFilenames(boolean writeFilesWithFilenames)
-
isWriteFilesWithFilenames
public boolean isWriteFilesWithFilenames()
-
isDeleteOnExit
public boolean isDeleteOnExit()
-
getBufferSize
public int getBufferSize()
- Returns:
- the size of buffer used to read data from the input stream
-
setBufferSize
public void setBufferSize(int bufferSize)
- Parameters:
bufferSize
- the size of buffer used to read data from the input stream
-
-