"PatientInfo": {
        "Name": "{\"GivenName\":\"sduie\"}",
        "Height": "",
        "Weight": "身高170",
        "age": "",
        "Sex": -1,
         "PatientID": ""
    }

如上图

"Name": "{\"GivenName\":\"sduie\"}"

利用org.json.JSONObject生成Json字符串有转意字符

原因是

Paste_Image.png

换成

Paste_Image.png

···
private static JSONObject getObjectName(Name name) {
JSONObject nameObject = new JSONObject();
try {
nameObject.put(“GivenName”, name.getGivenName());

    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        System.out.println("===-BJ--nameObject===" + e);

    }
    System.out.println("===-BJ--nameObject===" + nameObject.toString());

    return nameObject;
}

···

就好了。

还有注意下,利用阿里巴巴的fastjson生成json字符串时,会自动将首字母大写的转为小写。

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐