public static String getJsonStringByEntity(Object o) { String strJson = ""; Gson gson = new Gson(); strJson = gson.toJson(o); return strJson; }