随堂笔记:文件的编码

package com.imooc.io;

import java.io.UnsupportedEncodingException;

public class EncodeDemo {
	public static void main(String[] args) throws UnsupportedEncodingException {
		String s = "慕课ABC";
		System.out.printf("Original string: %n[%s]%n", s);
		
		System.out.println("Charset default:");
		printBytes(s.getBytes());             // [c4 bd bf ce 41 42 43]
		
		System.out.println("Charset gbk:");
		printBytes(s.getBytes("gbk"));        // [c4 bd bf ce 41 42 43]

		System.out.println("Charset utf-8:");
		printBytes(s.getBytes("utf-8"));      // [e6 85 95 e8 af be 41 42 43]
		
		System.out.println("Charset utf-16be:");
		printBytes(s.getBytes("utf-16be"));   // [61 55 8b fe 0 41 0 42 0 43]
	}

	private static void printBytes(byte[] bytes) {
		StringBuilder result = new StringBuilder();
		for (byte b : bytes) {
			// Show each byte in form of HEX-numbered string
			result.append(Integer.toHexString(b & 0xff)).append(" ");
		}
		System.out.printf("[%s]%n", result.toString().trim());
	}
	
	/* Note:
	 * -----------------
	 * 1. 中文OS创建文本文件时,编码默认为ANSI,即GBK编码;联通、联按utf-8保存仅为巧合
	 * 2. Java 采用双字节编码 UTF-16BE,其中文、英文均占两个字节(61 55、0 41)
	 * 3. 按 utf-8 编码,一个中文占 3 个字节,英文占 1 个字节
	 * 4. string -> bytes[](按charset编码):byte[] bytes = str.getBytes(charset);
	 * 5. bytes[] -> string(按charset编码):String string = new String(bytes, charset);
	 */
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

安冬的码畜日常

您的鼓励是我持续优质内容的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值