JAVA 无BOM utf8文件编码判断


/**
	 * @Comments :获取文件编码格式
	 * @param fileName
	 * @return
	 */
	private static String getCharset(File fileName) {
		BufferedInputStream bin;
		int bom = 0;
		String str = " ";
		String str2 = "";
		try {
			bin = new BufferedInputStream(new FileInputStream(fileName));
			bom = (bin.read() << 8) + bin.read();
			// 获取两个字节内容,如果文件无BOM信息,则通过判断字的字节长度区分编码格式
			byte bs[] = new byte[10];
			while(str.matches("\\s+\\w*")){
				bin.read(bs);
				str = new String(bs, "UTF-8");
			}
			str2 = new String(bs, "GBK");
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}


		String code = null;
		// 有BOM
		switch (bom) {
		case 0xefbb:
			code = "UTF-8";
			break;
		case 0xfffe:
			code = "Unicode";
			break;
		case 0xfeff:
			code = "UTF-16BE";
			break;
		default:
			// 无BOM
			if (str.length() <=str2.length()) {
				code = "UTF-8";
			} else {
				code = "GBK";
			}
		}


		return code;
	}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值