URL地址中汉字的编码转换

感觉也没什么大用处,但是有时候忍不住就想知道一堆符号到底代表了什么东西

//服务器端:
			String encodeStr = URLEncoder.encode("中国","utf-8");
			System.out.println("处理后:" + encodeStr);
			
			//处理后:%E4%B8%AD%E5%9B%BD   
			//客户端:
			String decodeStr = URLDecoder.decode("https://baike.baidu.com/item/%E4%B8%AD%E5%80%BC%E6%BB%A4%E6%B3%A2/5031069", "utf-8");
//			String decodeStr = URLDecoder.decode(encodeStr, "utf-8");
			System.out.println("解码:" + decodeStr);
			//解码:中国

你可能感兴趣的:(后台)