json-mapper转换java对象到json字符串

来源:互联网 发布:ubuntu编译配置lnmp 编辑:程序博客网 时间:2024/05/22 05:10
ObjectMapper om = new ObjectMapper();String result;try {result = om.writeValueAsString(cookBookDetail);System.out.println(result);} catch (JsonGenerationException e1) {// TODO Auto-generated catch blocke1.printStackTrace();} catch (JsonMappingException e1) {// TODO Auto-generated catch blocke1.printStackTrace();} catch (IOException e1) {// TODO Auto-generated catch blocke1.printStackTrace();}

转到其它类型也是可以的,敲入writevalue就能看到。

spring-android引入了这个库,使用起来非常方便,避免再引入gson库了

0 0