其他分享
首页 > 其他分享> > PDF文件转换为Base64编码

PDF文件转换为Base64编码

作者:互联网

在线base64转pdf:格式转换
包名:

import sun.misc.BASE64Encoder;

import java.io.*;

方法:

/**
     * 将pdf文件转换为Base64编码
     * @param file pdf文件
     * @return
     */
    public static String PdfToBase64(File file) {
        BASE64Encoder encoder = new BASE64Encoder();
        FileInputStream fin =null;
        BufferedInputStream bin =null;
        ByteArrayOutputStream baos = null;
        BufferedOutputStream bout =null;
        try {
            fin = new FileInputStream(file);
            bin = new BufferedInputStream(fin);
            baos = new ByteArrayOutputStream();
            bout = new BufferedOutputStream(baos);
            byte[] buffer = new byte[1024];
            int len = bin.read(buffer);
            while(len != -1){
                bout.write(buffer, 0, len);
                len = bin.read(buffer);
            }
            //刷新此输出流并强制写出所有缓冲的输出字节
            bout.flush();
            byte[] bytes = baos.toByteArray();
            return encoder.encodeBuffer(bytes).trim();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            try {
                fin.close();
                bin.close();
                bout.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return null;
    }    

标签:bin,编码,buffer,Base64,len,new,PDF,bout,null
来源: https://blog.csdn.net/qq_41635282/article/details/119349938