Package org.eclipse.jetty.util
Class MultiPartInputStreamParser.MultiPart
- java.lang.Object
-
- org.eclipse.jetty.util.MultiPartInputStreamParser.MultiPart
-
- All Implemented Interfaces:
Part
- Enclosing class:
- MultiPartInputStreamParser
public class MultiPartInputStreamParser.MultiPart extends java.lang.Object implements Part
-
-
Constructor Summary
Constructors Constructor Description MultiPart(java.lang.String name, java.lang.String filename)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcleanUp()Only remove tmp files.voiddelete()Remove the file, whether or not Part.write() was called on it (ie no longer temporary)byte[]getBytes()java.lang.StringgetContentDispositionFilename()Get the filename from the content-disposition.java.lang.StringgetContentType()java.io.FilegetFile()Get the filejava.lang.StringgetHeader(java.lang.String name)java.util.Collection<java.lang.String>getHeaderNames()java.util.Collection<java.lang.String>getHeaders(java.lang.String name)java.io.InputStreamgetInputStream()java.lang.StringgetName()longgetSize()java.lang.StringgetSubmittedFileName()java.lang.StringtoString()voidwrite(java.lang.String fileName)
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getContentType
public java.lang.String getContentType()
- Specified by:
getContentTypein interfacePart- See Also:
Part.getContentType()
-
getHeader
public java.lang.String getHeader(java.lang.String name)
- Specified by:
getHeaderin interfacePart- See Also:
Part.getHeader(java.lang.String)
-
getHeaderNames
public java.util.Collection<java.lang.String> getHeaderNames()
- Specified by:
getHeaderNamesin interfacePart- See Also:
Part.getHeaderNames()
-
getHeaders
public java.util.Collection<java.lang.String> getHeaders(java.lang.String name)
- Specified by:
getHeadersin interfacePart- See Also:
Part.getHeaders(java.lang.String)
-
getInputStream
public java.io.InputStream getInputStream() throws java.io.IOException- Specified by:
getInputStreamin interfacePart- Throws:
java.io.IOException- See Also:
Part.getInputStream()
-
getSubmittedFileName
public java.lang.String getSubmittedFileName()
- Specified by:
getSubmittedFileNamein interfacePart- See Also:
Part.getSubmittedFileName()
-
getBytes
public byte[] getBytes()
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfacePart- See Also:
Part.getName()
-
getSize
public long getSize()
- Specified by:
getSizein interfacePart- See Also:
Part.getSize()
-
write
public void write(java.lang.String fileName) throws java.io.IOException- Specified by:
writein interfacePart- Throws:
java.io.IOException- See Also:
Part.write(java.lang.String)
-
delete
public void delete() throws java.io.IOExceptionRemove the file, whether or not Part.write() was called on it (ie no longer temporary)- Specified by:
deletein interfacePart- Throws:
java.io.IOException- See Also:
Part.delete()
-
cleanUp
public void cleanUp() throws java.io.IOExceptionOnly remove tmp files.- Throws:
java.io.IOException- if unable to delete the file
-
getFile
public java.io.File getFile()
Get the file- Returns:
- the file, if any, the data has been written to.
-
getContentDispositionFilename
public java.lang.String getContentDispositionFilename()
Get the filename from the content-disposition.- Returns:
- null or the filename
-
-