Java:防止编码字符串的自动解码

发布于 2024-11-23 18:47:43 字数 338 浏览 1 评论 0原文

我有一个像这样的编码字符串:

17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu

并且想将其拆分为“/”。

最后一部分,有一个编码为“%2F”的“/”。

结果是

[17298457,abcdef , 17298529,ghijklm , 17298562,opq , rstu]

问题是,一旦我将字符串传递给另一个方法(分割方法ec),Java就会立即解码该字符串,

有人知道如何解决这个问题吗?

多谢! 僧

I have an encoded String like this:

17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu

and want to split it on the "/".

In the last part, there is a encoded "/" as "%2F".

The result is

[17298457,abcdef , 17298529,ghijklm , 17298562,opq , rstu]

The problem is, that Java decodes the string on the fly as soon as i pass it to another method (split method e.c.)

Do someone have a good idea how to work around that?

thanks a lot!
monk

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

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

发布评论

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

评论(2

仲春光 2024-11-30 18:47:43

不适合我....

import java.util.Arrays;
public class Test {
    public static void main(String[] args) throws Exception {
        String s = "17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu";
        System.out.println(Arrays.toString(s.split("/")));
    }
}

给出

[17298457,abcdef, 17298529,ghijklm, 17298562,opq%2Frstu]

Not for me....

import java.util.Arrays;
public class Test {
    public static void main(String[] args) throws Exception {
        String s = "17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu";
        System.out.println(Arrays.toString(s.split("/")));
    }
}

gives

[17298457,abcdef, 17298529,ghijklm, 17298562,opq%2Frstu]
眼泪也成诗 2024-11-30 18:47:43
public static void main(String[] args) {


    String test = "17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu";

    String[] args2 = test.split("/");

    for (int i = 0; i < args2.length; i++) {

        String[] args3 = args2[i].split("%2F");

        for (int j = 0; j < args3.length; j++) {

            if(!args3[j].trim().startsWith(",") && j != 0)
            System.out.print(" ,");
            System.out.print(args3[j]);
        }

    }

输出 - 正如你所写的 -

17298457,abcdef17298529,ghijklm17298562,opq,rstu

public static void main(String[] args) {


    String test = "17298457,abcdef/17298529,ghijklm/17298562,opq%2Frstu";

    String[] args2 = test.split("/");

    for (int i = 0; i < args2.length; i++) {

        String[] args3 = args2[i].split("%2F");

        for (int j = 0; j < args3.length; j++) {

            if(!args3[j].trim().startsWith(",") && j != 0)
            System.out.print(" ,");
            System.out.print(args3[j]);
        }

    }

OUT PUT - AS U WRITTEN -

17298457,abcdef17298529,ghijklm17298562,opq ,rstu

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