我想修补一个JSON字符串。我得到了要修补的字段的“路径”,以及要修补的“值”。
该值可以是任何东西,字符串,整数,浮点数,布尔值,数组或对象。

如何将对象转换为JsonValue?

javax.json.JsonPointer类中的'replace'方法需要一个JsonValue对象。

最佳答案

使用This

    import com.google.gson.Gson;

    Statue statue = new Statue();//java class
    String json = new Gson().toJson(statue);
    response.setContentType("application/json");
    response.setCharacterEncoding("UTF-8");
    response.getWriter().write(json);


Json将采用Java类结构

09-07 05:59