java——UTF-8编码与解码

Posted 向阳-Y.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java——UTF-8编码与解码相关的知识,希望对你有一定的参考价值。

java——UTF-8编码与解码

渗透测试有时候会遇到%E9%99%88这类的编码

在线转的结果

导入java中转换的结果:

JAVA代码如下:

import java.net.URLDecoder;
import java.net.URLEncoder;

//URLDecoder.decode("%E5%A4%A9%E6%B4%A5","UTF-8");
public class URLDecoderTesT 
    public static void main(String[] args) throws Exception 
 
        // 将application/x-www-form-urlencoded字符串转换成普通字符串
        // 其中的字符串直接从上图所示窗口复制过来,chrome 默认用 UTF-8 字符集进行编码,所以也应该用对应的字符集解码
        System.out.println("采用UTF-8字符集进行解码:");
        String keyWord = URLDecoder.decode("%E9%99%88", "UTF-8");
        System.out.println(keyWord);
//        System.out.println("\\n 采用GBK字符集进行解码:");
//        System.out.println(URLDecoder.decode("%E5%A4%A9%E6%B4%A5%E5%A4%A7%E5%AD%A6+Rico", "GBK"));
// 
//        // 将普通字符串转换成application/x-www-form-urlencoded字符串
        System.out.println("\\n 采用utf-8字符集:");
        String urlStr = URLEncoder.encode("../../../../../../../etc/passwd", "utf-8");
        System.out.println(urlStr);
//        System.out.println("\\n 采用GBK字符集:");
//        String urlStr2 = URLEncoder.encode("天津大学", "GBK");
//        System.out.println(urlStr2);
    

以上是关于java——UTF-8编码与解码的主要内容,如果未能解决你的问题,请参考以下文章

编码与解码

JavaScript进行UTF-8编码与解码

前后台的字符编码处理

Java 和 JS/AS3 之间 URL 解码/编码 UTF-8 的差异(错误!?)

编码与解码

Python 读写文件的编码与解码问题