GBK&Unicode -2024/11/16


UTF-8是一种编码规则


为什么会有乱码:

  1. 读取数据时未读完整个汉字
  2. 编码和解码的方式不统一

如何不产生乱码

  1. 不要使用字节流读取文本文件
  2. 编码解码时使用同一个码表,同一个编码方式
public static void main(String[] args) throws UnsupportedEncodingException {
        String str = "iam李华";
        //1.编码
        byte[] bytes = str.getBytes();
        System.out.println(Arrays.toString(bytes));
        byte[] bytes1 = str.getBytes("GBK");
        System.out.println(Arrays.toString(bytes1));
        //2.解码
        String str1 = new String(bytes);
        System.out.println(str1);
        String str2 = new String(bytes,"GBK");
        System.out.println(str2);
    }
posted @ 2024-11-17 16:08  XYu1230  阅读(4)  评论(0编辑  收藏  举报