如何对“é”进行编码使用android的字符串
我正在使用 json 解析从 url 获取数据。 url 是 json 格式。
在此 url 中,某些数据包含特殊字符,例如“é”。我想解码这些字符
我如何在android中解码?
I am using json parsing to fetch data from url. The url is json format.
In this url, some data contains special characters like "é". I want to decode these characters
How can i decode in android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用http请求获取json
EntityUtils.toString(the_http_response.getEntity(), "utf-8");
将以您想要的任何格式编码的字符串形式给出响应。
If you're getting the json using a http request
EntityUtils.toString(the_http_response.getEntity(), "utf-8");
will give the response as a string encoded in whatever format you want.