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();

温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-07-07

下面这段工具类中有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;
}
}

第2个回答  2014-07-07
下一个json的jar包,然后再代码中使用JSONArray jsonArray = JSONArray.fromObject(/*你的list*/);这样生成的jsonArray就是一个json字符串。是不是超简便呢。本回答被提问者采纳
第3个回答  2014-07-07
用fastjson,JSONObject的toJSONString方法。
第4个回答  2014-07-07
你要把他转为JSON对象而不是String
相似回答