1

@ResponseBody返回

[{"id":1010,"name":"projectname2"}]输入 json 字符串

但我需要一个以下 json 字符串

[{"id":1010,"name":"projectname2","age":"21"}]

那么如何将年龄属性连接到默认生成的 json 字符串?

我使用带有 spring-json jar 的 java spring-mvc 框架

@RequestMapping(value = "/projectsByEmployeeId/list", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public List<Project> getProjectsByEmployeeId(
        HttpServletRequest request) {
    String filter = request.getParameter("filter");
    FilterAttributes[] filterAttributes = null;
    try {
        filterAttributes = new ObjectMapper().readValue(filter,
                FilterAttributes[].class);
    } catch (Exception exception) {
        logger.error("Filtering parameter JSON string passing failed",
                exception);
    }

    if ((filterAttributes != null)
            && (!filterAttributes[0].getStringValue().isEmpty())) {
        return utilityService.getProjectsByEmployeeId(44L);//this is an example id
    } else {
        return utilityService.getProjects();
    }
}
4

2 回答 2

0

另一种方法来实现这一点(你说你现在正在使用 JSONObject,而 JSONObjects 不是默认库)

拿起绳子,

[{"id":1010,"name":"projectname2"}]

并将其转换为 JSONObject。

转换后,您可以使用JSONObject.append()将值为“21”的键“age”附加到它。

于 2013-06-11T13:46:11.667 回答
0

实现此目的的另一种方法是纯字符串操作 -

String json = "[{\"id\":1010,\"name\":\"projectname2\"}]";
json = json.substring(0, json.length() - 2); //strip the }]

String newJSON = json.concat(",\"age\": 21}]"); // add in the new key and end

System.out.println(newJSON); // [{"id":1010,"name":"projectname2","age": 21}]
于 2013-06-11T13:56:51.580 回答