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

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

Introduction

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

The text is from its open source code.

Field

booleanisFormField
Whether or not this item is a simple form field.

Method

StringgetFieldName()
Returns the name of the field in the multipart form corresponding to this file item.
StringgetName()
Returns the original filename in the client's filesystem.
FilegetStoreLocation()
Returns the java.io.File object for the FileItem's data's temporary location on the disk.
StringgetString()
Returns the contents of the file as a String, using the default character encoding.
voidwrite(File file)
A convenience method to write an uploaded item to disk.