Here you can find the source of toJson(Object o)
public static final String toJson(Object o) throws Exception
//package com.java2s; //License from project: Open Source License import com.fasterxml.jackson.databind.ObjectMapper;; public class Main { private static final ObjectMapper JSON_MAPPER = new ObjectMapper(); public static final String toJson(Object o) throws Exception { return JSON_MAPPER.writeValueAsString(o); }// ww w. j a v a2s .c o m }