files.java
来自「整个程序是struts1.2的版本构架」· Java 代码 · 共 57 行
JAVA
57 行
// Decompiled Using: FrontEnd Plus v2.03 and the JAD Engine
// Available From: http://www.reflections.ath.cx
// Decompiler options: packimports(3)
// Source File Name: files.java
package upload;
import java.util.Hashtable;
// Referenced classes of package xiaoxiang.fileUpload:
// file
public class files
{
protected files()
{
hFiles = new Hashtable();
count = 0;
totalSize = 0L;
}
protected void addFile(file pFile)
{
hFiles.put(new Integer(count), pFile);
count++;
totalSize += pFile.getSize();
}
public file getFile(int pCount)
throws Exception
{
if(pCount >= count || pCount <= -1)
{
throw new Exception("\u53C2\u6570\u9519\u8BEF");
} else
{
file tempFile = (file)hFiles.get(new Integer(pCount));
return tempFile;
}
}
public int getCount()
{
return count;
}
public long getSize()
{
return totalSize;
}
private Hashtable hFiles;
private long totalSize;
private int count;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?