可以解码java中已经用javascript编码的url
JS:
params.url = encodeURIComponent(url);
有谁知道这样做的正确方法?
答案 0 :(得分:4)
使用java.net.URLDecoder
。
但要注意java和javascript实现之间存在一些差异。
详情请看:
Difference in URL decode/encode UTF-8 between Java and JS/AS3 (bug!?)
Java equivalent to JavaScript's encodeURIComponent that produces identical output?
答案 1 :(得分:1)
使用课程URLDecoder
您可以将它用于编码和解码。