Txt转html,识别txt编码

30 篇文章 0 订阅
29 篇文章 0 订阅
package org.x3.cloud.file.util;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.*;

/**
 * Created By Rock-Ayl on 2020-05-07
 * txt文本工具箱
 */
public class TxtUtils {

    protected static Logger logger = LoggerFactory.getLogger(TxtUtils.class);

    /**
     * txt转html
     *
     * @param txtPath  源txt位置
     * @param htmlPath 输出的html位置
     */
    public static boolean txtToHtml(String txtPath, String htmlPath) {
        //初始化成功失败,缺省失败
        boolean isSuccess = false;
        //检测文件编码
        String encoding = getFileCoding(txtPath);
        //获取文件
        File file = new File(txtPath);
        //判断文件是否存在
        if (file.exists() && file.isFile()) {
            try {
                //获取文件内容
                InputStreamReader read = new InputStreamReader(new FileInputStream(file), encoding);
                //考虑到txt文本的编码格式
                BufferedReader bufferedReader = new BufferedReader(read);
                //创建html对象
                FileOutputStream fos = new FileOutputStream(new File(htmlPath));
                //考虑到html的编码
                OutputStreamWriter osw = new OutputStreamWriter(fos, "UTF-8");
                BufferedWriter bw = new BufferedWriter(osw);
                String lineTxt;
                //一行行读
                while ((lineTxt = bufferedReader.readLine()) != null) {
                    //写入
                    bw.write("&nbsp&nbsp&nbsp" + lineTxt + "</br>");
                }
                //清空
                bw.close();
                osw.close();
                fos.close();
                read.close();
                //操作成功
                isSuccess = true;
            } catch (IOException e) {
                logger.error("txt转html出现异常:{}", e);
            }
        }
        return isSuccess;
    }

    /**
     * 判断txt文本编码格式方法
     *
     * @param path 文件path
     * @return 文件编码 eg: UTF-8
     */
    private static String getFileCoding(String path) {
        //获取文件
        File file = new File(path);
        //默认按照GBK来
        String charset = "GBK";
        //初始化前三个byte
        byte[] first3Bytes = new byte[3];
        try {
            boolean checked = false;
            //读取文件流
            BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
            bis.mark(0);
            int read = bis.read(first3Bytes, 0, 3);
            if (read == -1) {
                //文件编码为 ANSI
                return charset;
            } else if (first3Bytes[0] == (byte) 0xFF
                    && first3Bytes[1] == (byte) 0xFE) {
                //文件编码为 Unicode
                charset = "UTF-16LE";
                checked = true;
            } else if (first3Bytes[0] == (byte) 0xFE
                    && first3Bytes[1] == (byte) 0xFF) {
                //文件编码为 Unicode big endian
                charset = "UTF-16BE";
                checked = true;
            } else if (first3Bytes[0] == (byte) 0xEF
                    && first3Bytes[1] == (byte) 0xBB
                    && first3Bytes[2] == (byte) 0xBF) {
                //文件编码为 UTF-8
                charset = "UTF-8";
                checked = true;
            }
            bis.reset();
            if (!checked) {
                while ((read = bis.read()) != -1) {
                    if (read >= 0xF0)
                        break;
                    // 单独出现BF以下的,也算是GBK
                    if (0x80 <= read && read <= 0xBF)
                        break;
                    if (0xC0 <= read && read <= 0xDF) {
                        read = bis.read();
                        // 双字节 (0xC0 - 0xDF)
                        if (0x80 <= read && read <= 0xBF)
                            // (0x80 - 0xBF),也可能在GB编码内
                            continue;
                        else
                            break;
                    } else if (0xE0 <= read && read <= 0xEF) {
                        // 也有可能出错,但是几率较小
                        read = bis.read();
                        if (0x80 <= read && read <= 0xBF) {
                            read = bis.read();
                            if (0x80 <= read && read <= 0xBF) {
                                charset = "UTF-8";
                                break;
                            } else
                                break;
                        } else
                            break;
                    }
                }
            }
            bis.close();
        } catch (IOException e) {
            logger.error("txt识别编码错误:{}", e);
            return charset;
        }
        return charset;
    }

}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值