這是可能的解碼在java中的URL已在JavaScript解碼網址已在JavaScript
JS被編碼進行編碼:
params.url = encodeURIComponent(url);
有誰知道這樣做的正確方法?
這是可能的解碼在java中的URL已在JavaScript解碼網址已在JavaScript
JS被編碼進行編碼:
params.url = encodeURIComponent(url);
有誰知道這樣做的正確方法?
使用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?
使用類URLDecoder
您可以使用它進行編碼和解碼。
http://www.w3schools.com/jsref/jsref_decodeuricomponent.asp –
@SimonStaton在Java中有相同的功能。 – Mercer
看錯了,假設你的意思是js –