在我关于魔兽世界神话地下城的应用程序中,我必须对raiderio Public API进行一些查询。当玩家说出这样的话时,我遇到了一个大问题:
https://raider.io/api/v1/characters/profile?region=US&realm=https://raider.io/characters/us/zuljin/Børomìr&name=&fields=mythic_plus_best_runs%3Aall
this name : Børomìr
在API中,此查询不起作用,因为它管理如下特殊字符:
https://raider.io/api/v1/characters/profile?region=us&realm=zuljin&name=B%C3%B8rom%C3%ACr&fields=mythic_plus_best_runs%3Aall
becomes this : B%C3%B8rom%C3%ACr
其中:
ø
变为%C3%B8
ì
变为%C3%AC
我需要在java中生成此转换的工具吗?
Heres是URL请求代码:
String body = "";
URL url = new URL("https://raider.io/api/v1/characters/profile?region="+region.toString()+"&realm="+realm+"&name="+name+"&fields=mythic_plus_best_runs%3Aall");
System.out.println(url.toString());
URLConnection uc = url.openConnection();
uc.addRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
InputStream in = uc.getInputStream();
String encoding = uc.getContentEncoding();
encoding = encoding == null ? "UTF-8"
// "windows-1251"
// "Cp1251"
: encoding;
body = IOUtils.toString(in, encoding);
答案 0 :(得分:5)
您可以在URLEncoder.encode("Børomìr", "UTF-8");
答案 1 :(得分:2)
这就是所谓的percent encoding,也就是在URL中使用的内容。有许多工具可以让您像this one一样对其进行解码。特别是在java中,它有一个URL encoder