Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 JSON,jsonlint 显示为有效的 JSON,但是当我打电话时
JSONObject rootObj=new JSONObject(orderJsonStr);
我得到org.json.JSONException: Unterminated string at character 13755,它破的地方有 "value": "12312&",它破的地方'&'。我们需要转义 & 还是可以使用 aurlEncoder来编码 JSON?
org.json.JSONException: Unterminated string at character 13755
"value": "12312&"
'&'
urlEncoder
对于 json meesage 中的特殊字符,如 \ 、 @ 、 & 、 # 等。首先将它们转换为各自的 HEX 值,然后发送您的消息。