JavaSE基础 URLEncoder.encode 对字符串进行URL编码

时间:2022-08-27 08:23:11

礼悟:
     公恒学思合行悟,尊师重道存感恩。叶见寻根三返一,江河湖海同一体。
          虚怀若谷良心主,愿行无悔给最苦。读书锻炼养身心,诚劝且行且珍惜。




       javaSE:1.8
             os:windows7 x64
            ide:MyEclipse 2017

 

在浏览器中查看字符串与对应的URL编码(页面的字符集是UTF-8)

JavaSE基础 URLEncoder.encode 对字符串进行URL编码

 

JavaSE基础 URLEncoder.encode 对字符串进行URL编码

 

 

 代码

package jizuiku.test;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

/**
 * URLEncoder.encode 对字符串进行URL编码
 * 
 * @author 给最苦
 * @version V17.10.27
 */
public class URLEnCoderDemo {
	public static void main(String[] args) throws UnsupportedEncodingException {
		
		String result = URLEncoder.encode("给最苦", "utf-8");
		System.out.println(result);
	}
}

 
结果
JavaSE基础 URLEncoder.encode 对字符串进行URL编码

  与浏览器中的编码结果相同,代码成功!




学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。