Java:ArrayList如何转换为JSON字符串呢
importjava.util.ArrayList;importorg.json.simple.JSONValue;publicclassClient{publicsta...
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]
但是我想看对象中的具体值该怎么办呢 展开
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]
但是我想看对象中的具体值该怎么办呢 展开
5个回答
展开全部
下面这段工具类中有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;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-07-07
展开全部
下一个json的jar包,然后再代码中使用JSONArray jsonArray = JSONArray.fromObject(/*你的list*/);这样生成的jsonArray就是一个json字符串。是不是超简便呢。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用fastjson,JSONObject的toJSONString方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要把他转为JSON对象而不是String
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询