Example usage for org.apache.commons.fileupload FileItem interface-usage

List of usage examples for org.apache.commons.fileupload FileItem interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.fileupload FileItem interface-usage.

Usage

From source file com.zotoh.netio.ULFileItem.java

/**
 * @author kenl
 *
 */
public class ULFileItem implements FileItem {

From source file com.aspectran.web.support.multipart.inmemory.MemoryFileItem.java

/**
 * The class is an implementation of the {@link org.apache.commons.fileupload.FileItem FileItem}
 * that removed file-related codes to support environments such as GAE
 * where the file system is not available.
 */
public class MemoryFileItem implements FileItem, FileItemHeadersSupport {

From source file org.apache.click.extras.gae.MemoryFileItem.java

/**
 * Provides an In-Memory FileItem implementation which represents a file or
 * form item that was received within a <tt>multipart/form-data</tt> POST
 * request.
 * <p/>
 * This FileItem implementation can safely be used with Google App Engine (GAE)

From source file org.gmr.web.multipart.GFileItem.java

/**
 *
 * <p>Important Note: This src is modifed version of {@link org.apache.commons.fileupload.disk.DiskFileItem}
 * to make it work under GAE using Spring.
 *
 * <p> All the File related codes are removed. For more info please check {@link org.apache.commons.fileupload.disk.DiskFileItem}

From source file cn.clxy.studio.common.web.multipart.GFileItem.java

/**
 *
 * <p>Important Note: This src is modifed version of {@link org.apache.commons.fileupload.disk.DiskFileItem}
 * to make it work under GAE using Spring.
 *
 * <p> All the File related codes are removed. For more info please check {@link org.apache.commons.fileupload.disk.DiskFileItem}

From source file ex.fileupload.spring.GFileItem.java

/**
 * 
 * <p>
 * Important Note: This src is modifed version of
 * {@link org.apache.commons.fileupload.disk.DiskFileItem} to make it work under
 * GAE using Spring.

From source file fr.paris.lutece.portal.web.upload.NormalizeFileItem.java

/**
 * This class is used to normalize the file names.
 * This class  override the method getName () of FileItem
 */
public class NormalizeFileItem implements FileItem {
    private static final long serialVersionUID = 8696893066570050604L;

From source file fr.paris.lutece.plugins.genericattributes.business.GenAttFileItem.java

/**
 * GenAttFileItem : builds a new fileItem
 */
public class GenAttFileItem implements FileItem {
    private static final long serialVersionUID = -8540841906551362771L;
    private byte[] _bValue;

From source file orc.lib.orchard.forms.PlainFormData.java

class PlainFileItem implements FileItem {
    private String name;
    private final String value;
    private FileItemHeaders headers;

    public PlainFileItem(final String name, final String value) {

From source file com.alibaba.citrus.service.upload.impl.cfu.AbstractFileItem.java

/**
 * <code>commons-fileupload-1.2.1</code>???
 * <p>
 * 
 * </p>
 * <ol>