📄 diskfile.java
字号:
/*
* $Header: /home/cvs/jakarta-struts/src/share/org/apache/struts/upload/DiskFile.java,v 1.7 2004/03/14 06:23:48 sraeburn Exp $
* $Revision: 1.7 $
* $Date: 2004/03/14 06:23:48 $
*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed 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 org.apache.struts.upload;
import java.io.File;
import java.io.InputStream;
import java.io.IOException;
import java.io.FileInputStream;
import java.io.ByteArrayOutputStream;
import java.io.FileNotFoundException;
/**
* @deprecated Use the Commons FileUpload based multipart handler instead. This
* class will be removed after Struts 1.2.
*/
public class DiskFile implements FormFile {
/**
* The filepath to the temporary file
*/
protected String filePath;
/**
* The content type of the file
*/
protected String contentType;
/**
* The size in bytes of the file
*/
protected int fileSize;
/**
* The name of the file
*/
protected String fileName;
public DiskFile(String filePath) {
this.filePath = filePath;
}
/**
* Attempt to read the temporary file and get it's data in byte
* array form. Tries to read the entire file (using a byte array
* the size of getFileSize()) at once, in one call to FileInputStream.read(byte[]).
* For buffered reading, see {@link #getFileData(int) getFileData(int)}.
* Note that this method can be dangerous, and that the size of a file
* can cause an OutOfMemoryError quite easily. You should use
* {@link #getInputStream() getInputStream} and do your own thing.
*
* @exception FileNotFoundException If the temp file no longer exists
* @exception IOException if there is some sort of IO problem.
* @see #getFileData(int)
*/
public byte[] getFileData() throws FileNotFoundException, IOException {
byte[] bytes = new byte[getFileSize()];
FileInputStream fis = new FileInputStream(filePath);
fis.read(bytes);
fis.close();
return bytes;
}
/**
* Attempts to read a file n bytes at a time, n being equal to "bufferSize".
* Note that this method can be dangerous, and that the size of a file
* can cause an OutOfMemoryError quite easily. You should use
* {@link #getInputStream() getInputStream} and do your own thing.
*
* @param bufferSize The size in bytes that are read from the file at a time
* @exception FileNotFoundException If the temp file no longer exists
*/
public byte[] getFileData(int bufferSize) throws FileNotFoundException, IOException {
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
FileInputStream fis = new FileInputStream(filePath);
int readLength = 0;
int totalLength = 0;
int offset = 0;
byte[] bytes = new byte[bufferSize];
while ((readLength = fis.read(bytes, offset, bufferSize)) != -1) {
byteStream.write(bytes, offset, bufferSize);
totalLength += readLength;
offset += readLength;
}
bytes = byteStream.toByteArray();
fis.close();
byteStream.close();
return bytes;
}
/**
* Delete the temporary file.
*/
public void destroy() {
File tempFile = new File(filePath);
if (tempFile.exists()) {
tempFile.delete();
}
}
/**
* Get the temporary file path for this form file
* @return A filepath to the temporary file
*/
public String getFilePath() {
return filePath;
}
/**
* Set the file name
*/
public void setFileName(String filename) {
this.fileName = filename;
}
/**
* Set the content type
*/
public void setContentType(String contentType) {
this.contentType = contentType;
}
/**
* Set the file size
* @param fileSize The size of the file in bytes
*/
public void setFileSize(int fileSize) {
this.fileSize = fileSize;
}
/**
* Get the file name
*/
public String getFileName() {
return fileName;
}
/**
* Get the content type
*/
public String getContentType() {
return contentType;
}
/**
* Get the file size
* @return The size of this file in bytes
*/
public int getFileSize() {
return fileSize;
}
/**
* Returns a FileInputStream to the file
*/
public InputStream getInputStream() throws FileNotFoundException, IOException {
return new FileInputStream(filePath);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -