Android 输出中的空格被转换为 %20

发布于 2024-12-15 04:14:07 字数 284 浏览 2 评论 0原文

我们有这个 Android 代码将文本发送到收集器:

public void sendHello() {
    s.link = "None";
    s.track("App Home Page - Hello all");
}

但是,输出包含 %20 而不是空格,因此我们最终会得到这样的结果:

App%20Home%20Page%20-%20Helloall

有谁知道如何防止空格被转换或者是什么原因导致的?

We have this Android code that is sending text to a collector:

public void sendHello() {
    s.link = "None";
    s.track("App Home Page - Hello all");
}

The output, though, contains %20 instead of spaces so we are ending up with something like this:

App%20Home%20Page%20-%20Helloall

Does anyone know how to prevent the spaces being converted or what is causing it?

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

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

发布评论

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

评论(1

2024-12-22 04:14:07

正如其他人所说,知道 s 的类型会很高兴。但是,作为一个盲目的尝试,您可以使用 URLDecoder 的 解码方法。

As others have said, it'd be nice to know the type of s. But, as a shot in the dark, you could use URLDecoder's decode method.

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