Java:ArrayList如何转换为JSON字符串呢
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java:ArrayList如何转换为JSON字符串呢相关的知识,希望对你有一定的参考价值。
import java.util.ArrayList;
import org.json.simple.JSONValue;
public class Client
public static void main(String[] args)
Student student1=new Student();
student1.setId(9527);
student1.setName("周星驰");
Student student2=new Student();
student2.setId(3824);
student2.setName("吴孟达");
ArrayList<Student> list=new ArrayList<>();
list.add(student1);
list.add(student2);
String json=JSONValue.toJSONString(list);
System.out.println(json);
结果输出:
[Student@18825b3,Student@1632847]
但是我想看对象中的具体值该怎么办呢
需要导入两个jar包
json-lib是用于转换json字符串的核心jar包,上面那个是辅助的。
转换json数组就是JSONArray.fromObject(arrayList).toString();
转换json对象就是JSONObject.fromObject(arrayList).toString();
参考技术A下面这段工具类中有json与object互相转换的,不知道能帮助你不
/*** json 工具类
*/
package com.xlhu.util;
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import org.apache.commons.lang.StringUtils;
import org.apache.poi.hssf.record.formula.functions.T;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Jackson的简单封装11.
*
* @author calvin
*/
public class JsonBinder
private static Logger logger = LoggerFactory.getLogger(JsonBinder.class);
private ObjectMapper mapper;
public JsonBinder(Inclusion inclusion)
mapper = new ObjectMapper();
//设置输出包含的属性
mapper.getSerializationConfig().setSerializationInclusion(inclusion);
//设置输入时忽略JSON字符串中存在而Java对象实际没有的属性
mapper.getDeserializationConfig().set(
org.codehaus.jackson.map.DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
mapper.configure(org.codehaus.jackson.JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
/**
* 创建输出全部属性到Json字符串的Binder.
*/
public static JsonBinder buildNormalBinder()
return new JsonBinder(Inclusion.ALWAYS);
/**
* 创建只输出非空属性到Json字符串的Binder.
*/
public static JsonBinder buildNonNullBinder()
return new JsonBinder(Inclusion.NON_NULL);
/**
* 创建只输出初始值被改变的属性到Json字符串的Binder.
*/
public static JsonBinder buildNonDefaultBinder()
return new JsonBinder(Inclusion.NON_DEFAULT);
/**
* 如果JSON字符串为Null或"null"字符串,返回Null.
* 如果JSON字符串为"[]",返回空集合.
*
* 如需读取集合如List/Map,且不是List<String>这种简单类型时使用如下语句:
* List<MyBean> beanList = binder.getMapper().readValue(listString, new TypeReference<List<MyBean>>() );
*/
@SuppressWarnings("hiding")
public <T> T fromJson(String jsonString, Class<T> clazz)
if (StringUtils.isEmpty(jsonString))
return null;
try
return mapper.readValue(jsonString, clazz);
catch (IOException e)
logger.warn("parse json string error:" + jsonString, e);
return null;
/**
* 如果对象为Null,返回"null".
* 如果集合为空集合,返回"[]".
*/
public String toJson(Object object)
try
return mapper.writeValueAsString(object);
catch (IOException e)
logger.warn("write to json string error:" + object, e);
return null;
/**
* 设置转换日期类型的format pattern,如果不设置默认打印Timestamp毫秒数.
*/
public void setDateFormat(String pattern)
if (StringUtils.isNotBlank(pattern))
DateFormat df = new SimpleDateFormat(pattern);
mapper.getSerializationConfig().setDateFormat(df);
mapper.getDeserializationConfig().setDateFormat(df);
/**
* 取出Mapper做进一步的设置或使用其他序列化API.
*/
public ObjectMapper getMapper()
return mapper;
参考技术B 下一个json的jar包,然后再代码中使用JSONArray jsonArray = JSONArray.fromObject(/*你的list*/);这样生成的jsonArray就是一个json字符串。是不是超简便呢。本回答被提问者采纳 参考技术C 用fastjson,JSONObject的toJSONString方法。 参考技术D 你要把他转为JSON对象而不是String
如何将 JSON 字符串转换为对象的 Arraylist
【中文标题】如何将 JSON 字符串转换为对象的 Arraylist【英文标题】:How to convert JSON String into Arraylist of Objects 【发布时间】:2018-10-26 12:09:49 【问题描述】:我有 JSON 字符串,从 HTTP 请求接收到:
[
"id":15,
"title":"1",
"description":"desc",
"user_id":152
,
"id":18,
"title":"2",
"description":"desc",
"user_id":152
,
"id":19,
"title":"tab3",
"description":"zadanka",
"user_id":152
]
如何将其转换为对象的 ArrayList?
【问题讨论】:
【参考方案1】:你需要声明一个pojo
class Data
String id;
String title;
String description;
String userId;
//Generate setter an getter
对 json 的迭代如下:
JSONArray jsonArr = new JSONArray("[your JSON Stirng]");
List<Data> dataList = new ArrayList<Data>();
for (int i = 0; i < jsonArr.length(); i++)
JSONObject jsonObj = jsonArr.getJSONObject(i);
Data data = new Data();
data.setId(jsonObj.getString("id"));
data.setTitle(jsonObj.getString("title"));
data.setDescription(jsonObj.getString("description"));
data.setUserId(jsonObj.getString("user_id"));
dataList.add(data);
你还需要 json jar。可以从here下载
【讨论】:
谢谢。这正是我所需要的。 不要从海报提供的链接下载,而是使用 Maven 和合法来源:mvnrepository.com/artifact/org.json/json【参考方案2】:使用 Gson
Gson gson = new Gson();
ArrayList<Object> listFromGson = gson.fromJson("json string",
new TypeToken<ArrayList<Object>>() .getType());
使用杰克逊
ObjectMapper mapper = new ObjectMapper();
ArrayList<Object> listFromJackson = mapper.readValue("json string",
new TypeReference<ArrayList<Object>>());
如果你可以将 pojo 定义为
public class Example
private Integer id;
private String title;
private String description;
private Integer userId;
// setters / getters
然后
ArrayList<Example> listFromGson = gson.fromJson("json string",
new TypeToken<ArrayList<Example>>() .getType());
ArrayList<Example> listFromJackson = mapper.readValue("json string",
new TypeReference<ArrayList<Example>>());
此外,您应该更喜欢使用List
而不是ArrayList
。
【讨论】:
【参考方案3】:如果您使用的是 RestApi,则将注释 @RequestBody 与您的 pojo 类一起使用。
@RequestMapping(value="/your api name", method=RequestMethod.POST)
public ResponseData createUser(@RequestBody MyPojo myPojo)
System.out.println("Creating User "+myPojo.toString());
//Here you will able to access your request data from myPojo object
制作你的 pojo 类:
public class MyPojo
private Data[] data;
public Data[] getData ()
return data;
public void setData (Data[] data)
this.data = data;
@Override
public String toString()
return "ClassPojo [data = "+data+"]";
public class Data
private String id;
private String title;
private String description;
private String user_id;
public String getId ()
return id;
public void setId (String id)
this.id = id;
public String getTitle ()
return title;
public void setTitle (String title)
this.title = title;
public String getDescription ()
return description;
public void setDescription (String description)
this.description = description;
public String getUser_id ()
return user_id;
public void setUser_id (String user_id)
this.user_id = user_id;
@Override
public String toString()
return "ClassPojo [id = "+id+", title = "+title+", description = "+description+", user_id = "+user_id+"]";
【讨论】:
【参考方案4】:除了@Sudhir,我推荐使用Gson
Gson gson = new GsonBuilder().create();
Data p = gson.fromJson(jsonString, Data.class);
// Or to array.
Data[] data = gson.fromJson(jsonString, Data[].class);
【讨论】:
以上是关于Java:ArrayList如何转换为JSON字符串呢的主要内容,如果未能解决你的问题,请参考以下文章