从此 JSON 日期中删除转义字符的简单方法

发布于 2024-12-23 07:32:16 字数 194 浏览 2 评论 0 原文

在我的 Android 应用程序中,我的 JSON 日期返回如下:

\/Date(1323752400000)\/

有没有一种简单的方法可以删除转义字符? (这是从 WCF 服务发送到 Android 应用程序)。我已经在使用 StringEscapeUtils.unEscapeHtml4 来解码整个序列化对象。

In my android application, my JSON date is returned as this:

\/Date(1323752400000)\/

Is there a simple way to remove the escape characters? (This is being sent from a WCF service to an Android application). I am already using StringEscapeUtils.unEscapeHtml4 to decode the entire serialized object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情仇皆在手 2024-12-30 07:32:16

实际上这不起作用,因为它会抛出 java.util.regex.PatternSyntaxException 而不是使用它,

  myJsonString=myJsonString.replaceAll("\\\\",""); 

它可以正常工作

actully this not works as it throws java.util.regex.PatternSyntaxException instead of using that use

  myJsonString=myJsonString.replaceAll("\\\\",""); 

it works fine

九命猫 2024-12-30 07:32:16

在接收端,如果你真的愿意,你可以这样做 myJsonString = myJsonString.replaceAll("\\","");

但请注意,这些转义字符绝不会使 JSON无效或语义上不同 - '/' 字符可以选择在 JSON 中使用 '\' 进行转义。

On the receiving end, if you really want to, you could just do myJsonString = myJsonString.replaceAll("\\","");

But do note that those escape characters in no way make the JSON invalid or otherwise semantically different -- the '/' character can be optionally escaped with '\' in JSON.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文