程序代码输出到显示台上的内容完全乱码,该情况是我在idea中配了tomcat7后出现的
public class URLDemo {
public static void main(String[] args) throws UnsupportedEncodingException {
String username = "张三";
//1. URL编码
String encode = URLEncoder.encode(username, "UTF-8");
System.out.println(encode);
//2. URL解码
String decode = URLDecoder.decode(encode, "UTF-8");
//String decode = URLDecoder.decode(encode, "ISO-8859-1");
System.out.println(decode);
System.out.println(username);
}
}
按照一些视频所说采用自己规定的编码方式,但仍然没有。