前言
URLDecoder和URLEncoder用于普通字符串和application/x-www-form-urlencoded MIME字符串转换。
场景
URL含非西欧字符时,浏览器转非西欧字符串为application/x-www-form-urlencoded MIME字符串。
方法
decode(String s,String enc)
URLDecoder静态法。转application/x-www-form-urlencoded MIME字符串为普通字符串。
encode(String s,String enc)
URLEncoder静态法。转普通字符串为application/x-www-form-urlencoded MIME字符串。