美文网首页
中文转百分号编码问题

中文转百分号编码问题

作者: _Raye | 来源:发表于2017-04-04 11:50 被阅读0次

通常在URl中需将中文转成百分号编码

package org.mobiletrain;

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

public class Test03 {

    public static void main(String[] args) {
        String str = "王大锤";
        String str2;
         try {
             //将中文转换成百分号编码(URL中需要使用百分号编码)
            str2 = URLEncoder.encode(str,"utf-8");
            System.out.println(str2);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }
}

相关文章

网友评论

      本文标题:中文转百分号编码问题

      本文链接:https://www.haomeiwen.com/subject/pbvaottx.html