All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.hasor.web.upload.FileItemBase Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package net.hasor.web.upload;
import net.hasor.utils.io.IOUtils;
import net.hasor.web.FileItem;
import net.hasor.web.FileItemHeaders;
import net.hasor.web.FileItemStream;
import net.hasor.web.upload.util.Streams;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * 

This class represents a file or form item that was received within a * multipart/form-data POST request. * * @version $Id: FileItem.java 1454690 2013-03-09 12:08:48Z simonetripodi $ * @since 1.3 additionally implements FileItemHeadersSupport */ public abstract class FileItemBase implements FileItem { /** The headers, if any. */ private final FileItemHeaders headers; /** The file items content type. */ private final String contentType; /** The file items file name. */ private final String name; /** The file items field name. */ private final String fieldName; /** Whether the file item is a form field. */ private final boolean formField; public FileItemBase(FileItemStream stream) { this.headers = stream.getHeaders(); this.contentType = stream.getContentType(); this.name = stream.getName(); this.fieldName = stream.getFieldName(); this.formField = stream.isFormField(); } @Override public FileItemHeaders getHeaders() { return this.headers; } @Override public String getContentType() { return this.contentType; } @Override public String getName() { return this.name; } @Override public String getFieldName() { return this.fieldName; } @Override public boolean isFormField() { return this.formField; } @Override public byte[] get() throws IOException { InputStream inStream = this.openStream(); if (inStream == null) { throw new IOException("openStream result is null."); } ByteArrayOutputStream outStream = new ByteArrayOutputStream(); IOUtils.copy(inStream, outStream); IOUtils.closeQuietly(inStream); return outStream.toByteArray(); } @Override public String getString(String encoding) throws IOException { InputStream inStream = this.openStream(); if (inStream == null) { throw new IOException("openStream result is null."); } String asString = Streams.asString(inStream, encoding); IOUtils.closeQuietly(inStream); return asString; } @Override public String getString() throws IOException { InputStream inStream = this.openStream(); if (inStream == null) { throw new IOException("openStream result is null."); } String asString = Streams.asString(inStream); IOUtils.closeQuietly(inStream); return asString; } @Override public void writeTo(OutputStream outStream) throws IOException { InputStream inStream = this.openStream(); if (inStream == null) { throw new IOException("openStream result is null."); } IOUtils.copy(inStream, outStream); IOUtils.closeQuietly(inStream); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy