如何对“é”进行编码使用android的字符串

发布于 2024-10-28 02:25:51 字数 113 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

×纯※雪 2024-11-04 02:25:51

如果您使用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.

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