[] webservice参数用json的字符串格式传递
最近一项目,要提供webservice接口,本人用json字符串做完接口方法参数格式,不知道是否可行,高人指点一下,小弟在此谢过,然后用net.sf.json.jsonobject解析参数,要求参数格式为{'name':'get','int':1,'double',1.1,'null':null}。具体代码如下:
publicstringprocessservice(stringdata){
mapmap=null;
try{
jsonobjectjsonobject=jsonobject.fromobject(data);
map=newhashmap();
for(iteratoriter=jsonobject.keys();iter.hasnext();){
stringkey=(string)iter.next();
map.put(key,jsonobject.get(key));
}
}catch(exceptione){
return"传人的数据格式有误";
}
//处理传入数据
return"success";
}
相关推荐
WebVincent 2020-07-21
fengchao000 2020-07-04
baijinswpu 2020-06-28
88483063 2020-06-28
fengchao000 2020-06-16
somebodyoneday 2020-06-15
wujiajax 2020-06-14
somebodyoneday 2020-05-16
xx0cw 2020-05-16
newthon 2020-05-14
sailxu00 2020-04-27
fengchao000 2020-04-20
88483063 2020-01-29
83163452 2020-01-28
baijinswpu 2020-01-25
baijinswpu 2020-01-18