Java org.apache.commons.fileupload FileItemStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.fileupload FileItemStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.fileupload FileItemStream.

The text is from its open source code.

Implementation

org.apache.commons.fileupload.FileItemStream has the following implementations.
Click this link to see all its implementation.

Constructor

Method

StringgetContentType()
Returns the content type passed by the browser or null if not defined.
StringgetFieldName()
Returns the name of the field in the multipart form corresponding to this file item.
FileItemHeadersgetHeaders()
Returns the collection of headers defined locally within this item.
StringgetName()
Returns the original filename in the client's filesystem, as provided by the browser (or other client software).
booleanisFormField()
Determines whether or not a FileItem instance represents a simple form field.
InputStreamopenStream()
Creates an InputStream , which allows to read the items contents.
StringtoString()
Returns a string representation of the object.