Java的Base64Decoder类主要用于处理Base64编码和解码,而不是URL编码。如果你需要对URL进行解码,可以使用java.net.URLDecoder类。这个类提供了对URL编码的支持,可以将URL编码的字符串转换为普通字符串。
例如,如果你有一个URL编码的字符串,你可以这样解码它:
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
public class Main {
public static void main(String[] args) {
String encodedUrl = "https%3A%2F%2Fwww.example.com%2Fsearch%3Fq%3Djava";
try {
String decodedUrl = URLDecoder.decode(encodedUrl, StandardCharsets.UTF_8.toString());
System.out.println("Decoded URL: " + decodedUrl);
} catch (Exception e) {
e.printStackTrace();
}
}
}
这段代码将输出:
Decoded URL: https://www.example.com/search?q=java