Java-IoUtil擴充套件工具類

李文学發表於2024-03-15

現在記錄下 IO擴充套件支援

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;

import java.io.*;
import java.util.HashMap;

@Slf4j
public class TyIoUtil {
    // 快取檔案頭資訊-檔案頭資訊
    public static final HashMap<String, String> mFileTypes = new HashMap<String, String>();

    static {
        // images
        mFileTypes.put("FFD8FF", "jpg");
        mFileTypes.put("FFD8FF", "jpeg");
        mFileTypes.put("89504E47", "png");
        mFileTypes.put("47494638", "gif");
        mFileTypes.put("49492A00", "tif");
        mFileTypes.put("424D", "bmp");
        //
        mFileTypes.put("41433130", "dwg"); // CAD
        mFileTypes.put("38425053", "psd");
        mFileTypes.put("7B5C727466", "rtf"); // 日記本
        mFileTypes.put("3C3F786D6C", "xml");
        mFileTypes.put("68746D6C3E", "html");
        mFileTypes.put("44656C69766572792D646174653A", "eml"); // 郵件
        mFileTypes.put("D0CF11E0", "doc");
        mFileTypes.put("D0CF11E0", "xls");//excel2003版本檔案
        mFileTypes.put("5374616E64617264204A", "mdb");
        mFileTypes.put("252150532D41646F6265", "ps");
        mFileTypes.put("255044462D312E", "pdf");
        mFileTypes.put("504B0304", "ofd");
        mFileTypes.put("504B0304", "docx");
        mFileTypes.put("504B0304", "xlsx");//excel2007以上版本檔案
        mFileTypes.put("52617221", "rar");
        mFileTypes.put("57415645", "wav");
        mFileTypes.put("41564920", "avi");
        mFileTypes.put("2E524D46", "rm");
        mFileTypes.put("000001BA", "mpg");
        mFileTypes.put("000001B3", "mpg");
        mFileTypes.put("6D6F6F76", "mov");
        mFileTypes.put("3026B2758E66CF11", "asf");
        mFileTypes.put("4D546864", "mid");
        mFileTypes.put("1F8B08", "gz");
    }

    /**
     * @return 檔案頭資訊
     * 方法描述:根據輸入流獲取檔案頭資訊
     */
    public static String getFileType(InputStream inputStream,boolean closeStream) {
        return mFileTypes.get(getFileHeader(inputStream,closeStream));
    }

    /**
     * @return 檔案頭資訊
     * 方法描述:根據輸入流獲取檔案頭資訊
     */
    public static String getFileHeader(InputStream inputStream,boolean closeStream) {
        InputStream is = null;
        String value = null;
        try {
            is = inputStream;
            byte[] b = new byte[4];
            /*
             * int read() 從此輸入流中讀取一個資料位元組。int read(byte[] b) 從此輸入流中將最多 b.length
             * 個位元組的資料讀入一個 byte 陣列中。 int read(byte[] b, int off, int len)
             * 從此輸入流中將最多 len 個位元組的資料讀入一個 byte 陣列中。
             */
            is.read(b, 0, b.length);
            value = bytesToHexString(b);
        } catch (Exception e) {
        } finally {
            if (null != is &&closeStream) {
                try {
                    is.close();
                } catch (IOException e) {
                }
            }
        }
        log.info(">>>>>檔案的頭部資訊:" + value);
        if (StringUtils.startsWith(value, "FFD8FF")) {
            value = value.substring(0, 6);
        }
        return value;
    }

    /**
     * @param src 要讀取檔案頭資訊的檔案的byte陣列
     * @return 檔案頭資訊
     * 方法描述:將要讀取檔案頭資訊的檔案的byte陣列轉換成string型別表示
     */
    private static String bytesToHexString(byte[] src) {
        StringBuilder builder = new StringBuilder();
        if (src == null || src.length <= 0) {
            return null;
        }
        String hv;
        for (int i = 0; i < src.length; i++) {
            // 以十六進位制(基數 16)無符號整數形式返回一個整數引數的字串表示形式,並轉換為大寫
            hv = Integer.toHexString(src[i] & 0xFF).toUpperCase();
            if (hv.length() < 2) {
                builder.append(0);
            }
            builder.append(hv);
        }
        return builder.toString();
    }

    /**
     * 輸入流轉檔案
     * @param is
     * @param file
     * @throws IOException
     */
    public static void inputStream2File (InputStream is, File file) throws IOException {
        OutputStream os = null;
        try {
            os = new FileOutputStream(file);
            int len = 0;
            byte[] buffer = new byte[8192];

            while ((len = is.read(buffer)) != -1) {
                os.write(buffer, 0, len);
            }
        } finally {
            os.close();
            is.close();
        }
    }

    /**
     * 複製輸入流轉為輸出流,便於多次讀取
     * @param input
     * @return
     */
    public static ByteArrayOutputStream cloneInputStream(InputStream input) {
        try {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            byte[] buffer = new byte[1024];
            int len;
            while ((len = input.read(buffer)) > -1) {
                baos.write(buffer, 0, len);
            }
            baos.flush();
            return baos;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }
}

用法示例

                PgNewImageDto imageDto=new PgNewImageDto();
                imageDto.setFileType(TyIoUtil.getFileType(inputStream,false));
                String fileBase64=TyOkHttpUtil.inputStreamToBase64(inputStream);
                imageDto.setFileData(fileBase64);

效果展示

至此已完整取到了檔案格式

相關文章