String a =JSON.toJSONString(json); //json(格式固定)转变为string串
String ret= null;
String regex="userName(.*?)fullName"; //设置截取范围
Matcher matcher=Pattern.compile(regex).matcher(a);
while(matcher.find())
{
ret=matcher.group(1);
}
pname = ret.substring(6,ret.length()-6); //去掉“,等符号