整个程序是struts1.2的版本构架
源代码在线查看: files.java
// 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 {
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;
}
|
相关资源 |
|
-
整个程序是struts1.2的版本构架
-
整个程序是struts1.2的版本构架
-
煤矿安全实时监控系统(简单新闻发布系统)
主页上的登陆是ajax的
-
煤矿安全实时监控系统
主要功能是信息发布
-
多页文本编辑器(MulitPageEditor)
本程序是我学java一个星期后写的第一个程序,程序是很俗气的了,但是自我觉的还写的不错,呵呵,就拿出来共享一下,整个框架还是不错滴,有学习的价值,由
-
这是STRUTS1.2。6的开发包。。这是我从芝APACHE网站下下来
-
开发工具用EMBEST IDE进行开发,该程序是一个S3C44B0直接驱动网卡的程序,包括8019初始化,物理层收包发包,UDP的接收和发送,IP的发送和接收.已及ARM的地址解板,整个程序是自顶而下
-
.这里只做了对QCIF文件的解码;
2.本程序是纯C的
|