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.
当我将一个放在 objectJson 中时,它会自动添加转义字符。
把原来的
j.put("paif_start", "01/05/2012");
因为它保存了看跌期权
{"paif_start":"01\/05\/2012"}
如何删除这些转义字符?
在接收端,如果你真的想,你可以这样做
`myJsonString = myJsonString.replaceAll("\\","");`
但请注意,这些转义字符绝不会使 JSON 无效或在语义上有所不同——“/”字符可以选择在 JSON 中使用“\”进行转义。