Package io.undertow.servlet.spec
Class PartImpl
java.lang.Object
io.undertow.servlet.spec.PartImpl
- All Implemented Interfaces:
Part
- Author:
- Stuart Douglas
-
Constructor Summary
ConstructorsConstructorDescriptionPartImpl(String name, FormData.FormValue formValue, MultipartConfigElement config, ServletContextImpl servletContext, HttpServletRequestImpl servletRequest) -
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()Deletes the underlying storage for a file item, including deleting any associated temporary disk file.Gets the content type of this part.Returns the value of the specified mime header as aString.Gets the header names of this Part.getHeaders(String name) Gets the values of the Part header with the given name.Gets the content of this part as an InputStreamgetName()Gets the name of this partlonggetSize()Returns the size of this file.Gets the file name specified by the clientvoidA convenience method to write this uploaded item to disk.
-
Constructor Details
-
PartImpl
public PartImpl(String name, FormData.FormValue formValue, MultipartConfigElement config, ServletContextImpl servletContext, HttpServletRequestImpl servletRequest)
-
-
Method Details
-
getInputStream
Description copied from interface:PartGets the content of this part as an InputStream- Specified by:
getInputStreamin interfacePart- Returns:
- The content of this part as an InputStream
- Throws:
IOException- If an error occurs in retrieving the content as an InputStream
-
getContentType
Description copied from interface:PartGets the content type of this part.- Specified by:
getContentTypein interfacePart- Returns:
- The content type of this part.
-
getName
Description copied from interface:PartGets the name of this part -
getSubmittedFileName
Description copied from interface:PartGets the file name specified by the client- Specified by:
getSubmittedFileNamein interfacePart- Returns:
- the submitted file name
-
getSize
public long getSize()Description copied from interface:PartReturns the size of this file. -
write
Description copied from interface:PartA convenience method to write this uploaded item to disk.This method is not guaranteed to succeed if called more than once for the same part. This allows a particular implementation to use, for example, file renaming, where possible, rather than copying all of the underlying data, thus gaining a significant performance benefit.
- Specified by:
writein interfacePart- Parameters:
fileName- The location into which the uploaded part should be stored. Relative paths are relative toMultipartConfigElement.getLocation(). Absolute paths are used as provided. Note: that this is a system dependent string and URI notation may not be acceptable on all systems. For portability, this string should be generated with the File or Path APIs.- Throws:
IOException- if an error occurs.
-
delete
Description copied from interface:PartDeletes the underlying storage for a file item, including deleting any associated temporary disk file.- Specified by:
deletein interfacePart- Throws:
IOException- if an error occurs.
-
getHeader
Description copied from interface:PartReturns the value of the specified mime header as aString. If the Part did not include a header of the specified name, this method returnsnull. If there are multiple headers with the same name, this method returns the first header in the part. The header name is case insensitive. You can use this method with any request header. -
getHeaders
Description copied from interface:PartGets the values of the Part header with the given name.Any changes to the returned
Collectionmust not affect thisPart.Part header names are case insensitive.
- Specified by:
getHeadersin interfacePart- Parameters:
name- the header name whose values to return- Returns:
- a (possibly empty)
Collectionof the values of the header with the given name
-
getHeaderNames
Description copied from interface:PartGets the header names of this Part.Some servlet containers do not allow servlets to access headers using this method, in which case this method returns
nullAny changes to the returned
Collectionmust not affect thisPart.- Specified by:
getHeaderNamesin interfacePart- Returns:
- a (possibly empty)
Collectionof the header names of this Part
-