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 解析数据,其中我得到一个特殊字符(偶尔)\b,该字符是从数据库中获取并作为 JSON 响应发送的。获取的数据显示在中,ListView但数据显示为DemoData[](类似这样)。
\b
ListView
DemoData[]
我对\b角色的问题很少,
DemoData
由于特殊字符偶尔会出现,请指导我寻求更具体的解决方案。
您可以将所有“\b”字符替换为“”
YourJsonString.replaceAll("\b", "");
希望它会帮助你。