jAVA/JS URL转码解码

Java转码: URLEncoder.encode(name,"UTF-8"); js解码 decodeURIComponent(name) js使用encodeURIComponent()方法进行编码,例如: var url = encodeURIComponent(encodeURIComponent(url));  java解码 URLDecoder.decode(url);  js的enc
相关文章
相关标签/搜索