前端之家收集整理的这篇文章主要介绍了
fastjson使用方法实例,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package com.jysoft.memcump.common;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
public class NewJsonTest {
public static void main(String[] args) {
new NewJsonTest().init();
}
public void init()
{
String jsonString = JSON.toJSONStringWithDateFormat(new Date(),"hh:mm:ss");
List a = new ArrayList();
a.add("ddd");
a.add(111);
// String json2=(String) JSON.toJSON(a);
String[] b = new String[]{"helo","down"};
a.add(b);
System.out.println(jsonString+JSON.toJSON(a)+JSON.toJSON(b));
a.clear();
JSONObject object = new JSONObject();
}
}
2
"04:09:22"["ddd",111,["helo","down"]]["helo","down"]
原文链接:https://www.f2er.com/json/290285.html