整个程序是struts1.2的版本构架
源代码在线查看: request.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: Request.java
package upload;
import java.util.Enumeration;
import java.util.Hashtable;
public class Request
{
Request()
{
m_parameters = new Hashtable();
m_counter = 0;
}
protected void putParameter(String name, String value)
{
if(name == null)
throw new IllegalArgumentException("The name of an element cannot be null.");
if(m_parameters.containsKey(name))
{
Hashtable hashtable = (Hashtable)m_parameters.get(name);
hashtable.put(new Integer(hashtable.size()), value);
} else
{
Hashtable hashtable1 = new Hashtable();
hashtable1.put(new Integer(0), value);
m_parameters.put(name, hashtable1);
m_counter++;
}
}
public String getParameter(String s)
{
if(s == null)
throw new IllegalArgumentException("Form's name is invalid or does not exist (1305).");
Hashtable hashtable = (Hashtable)m_parameters.get(s);
if(hashtable == null)
return null;
else
return (String)hashtable.get(new Integer(0));
}
public Enumeration getParameterNames()
{
return m_parameters.keys();
}
public String[] getParameterValues(String s)
{
if(s == null)
throw new IllegalArgumentException("Form's name is invalid or does not exist (1305).");
Hashtable hashtable = (Hashtable)m_parameters.get(s);
if(hashtable == null)
return null;
String as[] = new String[hashtable.size()];
for(int i = 0; i < hashtable.size(); i++)
as[i] = (String)hashtable.get(new Integer(i));
return as;
}
private Hashtable m_parameters;
private int m_counter;
}
|
相关资源 |
|
-
整个程序是struts1.2的版本构架
-
整个程序是struts1.2的版本构架
-
煤矿安全实时监控系统(简单新闻发布系统)
主页上的登陆是ajax的
-
煤矿安全实时监控系统
主要功能是信息发布
-
多页文本编辑器(MulitPageEditor)
本程序是我学java一个星期后写的第一个程序,程序是很俗气的了,但是自我觉的还写的不错,呵呵,就拿出来共享一下,整个框架还是不错滴,有学习的价值,由
-
这是STRUTS1.2。6的开发包。。这是我从芝APACHE网站下下来
-
开发工具用EMBEST IDE进行开发,该程序是一个S3C44B0直接驱动网卡的程序,包括8019初始化,物理层收包发包,UDP的接收和发送,IP的发送和接收.已及ARM的地址解板,整个程序是自顶而下
-
.这里只做了对QCIF文件的解码;
2.本程序是纯C的
|