java的decode_java中有没有类似decodeURI()的方法?

本文探讨了JavaScript中的decodeURI、decodeURIComponent与Java中URLDecoder.decode方法在URL编码解码过程中的异同。通过示例代码展示了它们在处理中文字符和其他特殊字符时的行为,揭示了它们在实际应用中的细节差异。
摘要由CSDN通过智能技术生成

展开全部

Javascript 中的 decodeURI/decodeURIComponent,Java中的java.net.URLDecoder类的decode方法提供了相近62616964757a686964616fe4b893e5b19e31333337613736的功能,但又有一些微妙的不同:var URLDecoder = Java.type("java.net.URLDecoder");

var URLEncoder = Java.type("java.net.URLEncoder");

var url =  "

中文";

var s1 = encodeURI(url);

var s2 = encodeURIComponent(url);

var s3 = URLEncoder.encode(url, "UTF-8");

print(s1);

print(s2);

print(s3);

print("-------------")

print(decodeURI(s1));

print(decodeURI(s2));

print(decodeURI(s3));

print("-------------")

print(decodeURIComponent(s1));

print(decodeURIComponent(s2));

print(decodeURIComponent(s3));

print("-------------")

print(URLDecoder.decode(s1, "UTF-8"));

print(URLDecoder.decode(s2, "UTF-8"));

print(URLDecoder.decode(s3, "UTF-8"));使用JDK8的jjs.exe运行上面这段代码,结果如下:D:\Temp>j:\share\jdk8\bin\jjs.exe url.js

http%3A%2F%2Fwww.example.com%2Fstring%20with%20%2B%20and%20%3F%20and%20%26%20and%20%E4%B8%AD%E6%96%87

http%3A%2F%2Fwww.example.com%2Fstring+with+%2B+and+%3F+and+%26+and+%E4%B8%AD%E6%96%87

-------------

中文

http%3A%2F%2Fwww.example.com%2Fstring with %2B and %3F and %26 and 中文

http%3A%2F%2Fwww.example.com%2Fstring+with+%2B+and+%3F+and+%26+and+中文

-------------

中文

中文

中文

-------------

中文

中文

中文

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值