// System.out.println(result);
ObjectMapper mapper = new ObjectMapper();
// ByteArrayOutputStream baos = new ByteArrayOutputStream();
StringWriter sw = new StringWriter();
mapper.writeValue(sw, result);
// System.out.println(sw.toString());
ZNRecord zn = mapper.readValue(new StringReader(sw.toString()), ZNRecord.class);
System.out.println(result.toString());
System.out.println(zn.toString());