json所需jar包

来源:互联网 发布:ds数据精灵授权码 编辑:程序博客网 时间:2024/05/27 20:51



package temp;import net.sf.json.JSONArray;public class TestJson { public static void main(String[] a) { Boolean[] boolArray = new Boolean[] { true, false, true };JSONArray jsonArray = JSONArray.fromObject(boolArray);System.out.println(jsonArray);}}