gpt4 book ai didi

Java URL编码: URLEncoder vs. URI

转载 作者:行者123 更新时间:2023-12-02 02:43:58 25 4
gpt4 key购买 nike

查看 W3 Schools URL encoding webpage ,它说 @应编码为 %40 ,以及space应编码为 %20 .

我已经尝试过 URLEncoderURI ,但上面的内容也不正确:

import java.net.URI;
import java.net.URLEncoder;

public class Test {
public static void main(String[] args) throws Exception {

// Prints me%40home.com (CORRECT)
System.out.println(URLEncoder.encode("me@home.com", "UTF-8"));

// Prints Email+Address (WRONG: Should be Email%20Address)
System.out.println(URLEncoder.encode("Email Address", "UTF-8"));

// http://www.home.com/test?Email%20Address=me@home.com
// (WRONG: it has not encoded the @ in the email address)
URI uri = new URI("http", "www.home.com", "/test", "Email Address=me@home.com", null);
System.out.println(uri.toString());
}
}

由于某种原因,URLEncoder电子邮件地址是否正确,但空格不正确,并且 URI可以使用空格货币,但不能使用电子邮件地址。

我应该如何对这两个参数进行编码,使其与 w3schools 所说的正确(或者 w3schools 错误吗?)保持一致

最佳答案

虽然我认为 @fge 的答案是正确的,但由于我使用的是依赖于 W3Schools 文章中概述的编码的第 3 方 Web 服务,所以我遵循了 Java equivalent to JavaScript's encodeURIComponent that produces identical output? 的答案。

public static String encodeURIComponent(String s) {
String result;

try {
result = URLEncoder.encode(s, "UTF-8")
.replaceAll("\\+", "%20")
.replaceAll("\\%21", "!")
.replaceAll("\\%27", "'")
.replaceAll("\\%28", "(")
.replaceAll("\\%29", ")")
.replaceAll("\\%7E", "~");
} catch (UnsupportedEncodingException e) {
result = s;
}

return result;
}

关于Java URL编码: URLEncoder vs. URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57159214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com