Struts2,SpringMVC框架以及普通的Servlet请求都要向服务端传递参数,可以将传递过来的参数名以及参数值映射成一个JavaBean对象,但是这样就需要定义相对应的Bean对象。
为了减少Bean对象的定义使用,可以采用JSONObject对象来接收请求的参数值,JSONObject是封装好的一个类,需要依赖第三方的jar包,使用还是比较方便。
commons-beanutils-1.8.2.jar commons-lang-2.5.jar commons-logging-1.1.1.jar
commons-collections-3.2.jar ezmorph-1.0.6.jar json-lib-2.4-jdk15.jar
使用方法:
JSONObject jsonObject = new JSONObject();
request.setCharacterEncoding("UTF-8");
Enumeration<String> parameterNames = request.getParameterNames();
while (parameterNames.hasMoreElements()) {
String parameterName = parameterNames.nextElement();
String parameterValue = request.getParameter(parameterName);
jsonObject.put(parameterName,parameterValue);
}
也可以使用Map代替JSONObject获取参数键值对。这两张方式一般与Mybatis框架结合使用,便于通用开发。
原文链接:https://www.f2er.com/json/288974.html