?? formfile.java
字號:
///////////////////////////////////////////////////////////
// DeJaved by mDeJava v1.0. Copyright 1999 MoleSoftware. //
// To download last version of this software: //
// http://molesoftware.hypermatr.net //
// e-mail:molesoftware@mail.ru //
///////////////////////////////////////////////////////////
package org.apache.struts.upload;
import java.io.*;
public interface FormFile
{
public abstract String getContentType();
public abstract void setContentType(String s);
public abstract int getFileSize();
public abstract void setFileSize(int i);
public abstract String getFileName();
public abstract void setFileName(String s);
public abstract byte[] getFileData()
throws FileNotFoundException, IOException;
public abstract InputStream getInputStream()
throws FileNotFoundException, IOException;
public abstract void destroy();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -