通过BOM探测文本文件编码类型

从tomcat源码抄来的改的redface:

 

 

private Object[] getEncodingName(byte[] b4, int count) throws Exception {
	        if (count < 2) {
	            throw new Exception("unknow");
	        }

	        // UTF-16, with BOM
	        int b0 = b4[0] & 0xFF;
	        int b1 = b4[1] & 0xFF;
	        if (b0 == 0xFE && b1 == 0xFF) {
	            // UTF-16, big-endian
	            return new Object[]{"UTF-16BE",new Integer(2)};
	        }
	        if (b0 == 0xFF && b1 == 0xFE) {
	            // UTF-16, little-endian
	            return new Object[] {"UTF-16LE",new Integer(2)};
	        }

	        // default to UTF-8 if we don't have enough bytes to make a
	        // good determination of the encoding
	        if (count < 3) {
	        	throw new Exception("unknow");
	        }

	        // UTF-8 with a BOM
	        int b2 = b4[2] & 0xFF;
	        if (b0 == 0xEF && b1 == 0xBB && b2 == 0xBF) {
	            return new Object[]{"utf-8",new Integer(3)};
	        }

	        // default to UTF-8 if we don't have enough bytes to make a
	        // good determination of the encoding
	        if (count < 4) {
	        	throw new Exception("unknow");
	        }

	        // other encodings
	        int b3 = b4[3] & 0xFF;
	        if (b0 == 0x00 && b1 == 0x00 && b2 == 0x00 && b3 == 0x3C) {
	            // UCS-4, big endian (1234)
	            return new Object[]{"ISO-10646-UCS-4",new Integer(4)};
	        }
	        if (b0 == 0x3C && b1 == 0x00 && b2 == 0x00 && b3 == 0x00) {
	            // UCS-4, little endian (4321)
	            return new Object[]{"ISO-10646-UCS-4",new Integer(4)};
	        }
	        if (b0 == 0x00 && b1 == 0x00 && b2 == 0x3C && b3 == 0x00) {
	            // UCS-4, unusual octet order (2143)
	            // REVISIT: What should this be?
	            return new Object[]{"ISO-10646-UCS-4",new Integer(4)};
	        }
	        if (b0 == 0x00 && b1 == 0x3C && b2 == 0x00 && b3 == 0x00) {
	            // UCS-4, unusual octect order (3412)
	            // REVISIT: What should this be?
	            return new Object[]{"ISO-10646-UCS-4",new Integer(4)};
	        }
	        if (b0 == 0x00 && b1 == 0x3C && b2 == 0x00 && b3 == 0x3F) {
	            // UTF-16, big-endian, no BOM
	            // (or could turn out to be UCS-2...
	            // REVISIT: What should this be?
	            return new Object[]{"UTF-16BE",new Integer(4)};
	        }
	        if (b0 == 0x3C && b1 == 0x00 && b2 == 0x3F && b3 == 0x00) {
	            // UTF-16, little-endian, no BOM
	            // (or could turn out to be UCS-2...
	            return new Object[]{"UTF-16LE",new Integer(4)};
	        }
	        if (b0 == 0x4C && b1 == 0x6F && b2 == 0xA7 && b3 == 0x94) {
	            // EBCDIC
	            // a la xerces1, return CP037 instead of EBCDIC here
	            return new Object[]{"CP037",new Integer(4)};
	        }

	        throw new Exception("unknow");

	    }
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值