Skip to content

Instantly share code, notes, and snippets.

@seunggabi
Created March 21, 2020 11:48

Revisions

  1. seunggabi created this gist Mar 21, 2020.
    11 changes: 11 additions & 0 deletions mapToJson.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    public static String mapToJson(Map map, boolean isPretty) {
    ObjectMapper mapper = new ObjectMapper();

    try {
    return isPretty ?
    mapper.writerWithDefaultPrettyPrinter().writeValueAsString(map) :
    mapper.writeValueAsString(map);
    } catch (JsonProcessingException e) {
    return "";
    }
    }