• 大小: 0.31M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-27
  • 语言: Java
  • 标签: fastjson  解析  

资源简介


资源截图

代码片段和文件信息

package com.fastjson.util;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.TypeReference;

/**
 * fastjson解析数据
 *
 */
public class FastJsonTools {

public FastJsonTools() {

}

/**
 * 对单个javabean的解析
 * @param json
 * @param cls
 * @return
 */
public static  T getPerson(String jsonClass cls){
T t=null;
try {
t=JSON.parseobject(json cls);
} catch (Exception e) {
e.printStackTrace();
}
return t;
}

public static  List getPersons(String jsonClass cls){
List list=new ArrayList();
try {
list=JSON.parseArray(json cls);
} catch (Exception e) {
e.printStackTrace();
}
return list;
}

public sta

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1353  2015-04-27 14:25  FastJsonTools.java

     文件     355802  2015-04-27 09:58  fastjson-1.1.36.jar

----------- ---------  ---------- -----  ----

               357155                    2


评论

共有 条评论