java 按字节读写二进制文件(Base64编码解码)

最近在做项目时遇到这样一个需求:依次读取本地文件夹里所有文件的内容,转为JSON,发送到ActiveMQ的消息队列, 然后从MQ的消息队列上获取文件的信息,依次写到本地。常见的文件类型,比如.txt 和.png等文件的读写并不难。但是,我刚才所提到的需求,如果用常规的方法去读写,比如按字节读取文件内容,转为字符串,再转为JSON发送到MQ的队列,然后从MQ获取原文件信息写到文件,就会发现写出来的文件和文件不一样。我的解决方法是:按字节读取原文件,转为字节数组,将字节数组转为Base64编码格式的字符串,然后转为JOSN发送到MQ,然后从MQ获取到JOSN,将文件内容通过Base64解码为字符数组,写文件到某个路径。以下为代码:

测试类 Test.class

/**
 * @Desc: 测试类
 * @Date: 2016/7/1
 * @Version: 1.0
 * @Author: lzy
 */
public class Test {
    public static void main(String[] args){

        String fileName="JUBE99EGRR311800";           //文件名:测试文件是没有后缀名的二进制
        String fileReadPath="d:/read/";               //文件所在文件夹
        String filePath=fileReadPath+fileName;        //文件路径

        //工具类
        FileUtil fileUtil=new FileUtil();

        //按字节读取文件内容,并转换为Base64编码字符串
        String fileJsonStr=fileUtil.fileToJson(fileName,filePath);

        //文件内容Base64解码,按字节写文件
        fileUtil.writeFile(fileJsonStr,"d:/write/");
    }
}123456789101112131415161718192021222324

FileUtil.class 文件转换工具类

/**
 * @Desc: 文件内容转换工具类
 * @Date: 2016/7/1
 * @Version: 1.0
 * @Author: lzy
 */

public class FileUtil {

    /**
     * 文件内容转为 Base64 编码的 JSON
     * @param fileName 文件名
     * @param filePath 文件路径
     * @return
     */
    public String fileToJson(String fileName,String filePath){

        String fileContentJson="";      //文件内容转JSON
        try {
            if(null!=filePath && !filePath.equals("")){
                if(null!=fileName && !fileName.equals("")){
                    //将文件内容转为字节数组
                    byte[] fileByte=toByteArray(filePath);

                    //将字节数组转为Base64编码
                    String fileContent=ByteToBase64(fileByte);

                    FileEntity fileEntity=new FileEntity();
                    fileEntity.setFileName(fileName);
                    fileEntity.setFileContent(fileContent);

                    //实体转JSON
                    fileContentJson = FileEntitytoJSON(fileEntity);
                }
            }
        }catch (Exception e){
            Log.error("fileToJson error",e);
        }

        return fileContentJson;
    }

    /**
     * 将文件转成字节数组
     * @param filePath
     * @return
     */
    public byte[] toByteArray(String filePath){

        ByteArrayOutputStream bos=null;
        BufferedInputStream in = null;
        try {
            File f = new File(filePath);
            if(f.exists()){
                in = new BufferedInputStream(new FileInputStream(f));
                bos = new ByteArrayOutputStream((int) f.length());

                int buf_size = 1024;
                byte[] buffer = new byte[buf_size];
                int len = 0;
                while (-1 != (len = in.read(buffer, 0, buf_size))) {
                    bos.write(buffer, 0, len);
                }
                //return bos.toByteArray();
            }

        } catch (IOException e) {
            Log.error("toByteArray() Exception", e);
        } finally {
            try {
                in.close();
                bos.close();
            } catch (IOException e) {
                Log.error("toByteArray() Exception",e);
            }
        }
        return bos.toByteArray();
    }

    /**
     * Base64加密
     * @param b
     * @return
     */
    public String ByteToBase64(byte[] b) {
        String str="";
        if(null!=b){
            BASE64Encoder encoder = new BASE64Encoder();
            str=encoder.encode(b);
        }
        return str;
    }

    /**
     * Base64解密
     * @param str
     * @return
     */
    public byte[] Base64toByte(String str) {
        byte[] b = new byte[0];
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            if(null!=str && !str.equals("")){
                b = decoder.decodeBuffer(str);
            }
        } catch (IOException e) {
            Log.error("Base64toByte() Exception",e);
        }
        return b;
    }

    /**
     * 实体转JSON
     * @param fileEntity
     * @return
     */
    public String FileEntitytoJSON(FileEntity fileEntity) {
        String str="";
        if(null!=fileEntity){
            JSONObject json = JSONObject.fromObject(fileEntity);
            str = json.toString();
        }
        return str;
    }

    /**
     * JSON转实体
     * @param msg
     * @return
     */
    public FileEntity JSONtoFileEntity(String msg) {
        FileEntity fileEntity=new FileEntity();
        if(null!=msg && !msg.equals("")){
            JSONObject obj = new JSONObject().fromObject(msg);
            fileEntity = (FileEntity) JSONObject.toBean(obj, FileEntity.class);
        }
        return fileEntity;
    }

    /**
     * 写文件
     * @param fileJson json
     * @param filePath 文件路径
     */
    public void writeFile(String fileJson,String filePath){
        FileOutputStream fos=null;
        try{

            if(null!=fileJson && !fileJson.equals("")){
                if(null!=filePath && !filePath.equals("")){
                    //json转为文件实体
                    FileEntity fileEntity=JSONtoFileEntity(fileJson);

                    //Base64文件内容解码
                    byte[] b=Base64toByte(fileEntity.getFileContent());

                    File file=new File(filePath);
                    if (!file.exists()) {
                        file.mkdirs();
                    }

                    fos = new FileOutputStream(filePath + File.separator +fileEntity.getFileName());
                    fos.write(b);
                }
            }

        }catch (Exception e){
            Log.error("write Exception:",e);
        }finally {
            try {
                fos.close();
            } catch (IOException e) {
                Log.error("fos.close() Exception:", e);
            }
        }

    }
}123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178

FileEntity.class 文件实体类

/**
 * @Desc:文件信息实体
 * @Date: 2016/6/29
 * @Version: 1.0
 * @Author: lzy
 */
public class FileEntity {
    private String fileName;       //文件名
    private String fileContent;    //文件内容

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getFileContent() {
        return fileContent;
    }

    public void setFileContent(String fileContent) {
        this.fileContent = fileContent;
    }
}

原文地址:https://www.cnblogs.com/firstdream/p/10070587.html

时间: 2024-10-04 19:12:19

java 按字节读写二进制文件(Base64编码解码)的相关文章

Atitit. 二进制数据ascii表示法,与base64编码解码api 设计标准化总结java php c#.net

Atitit. 二进制数据ascii表示法,与base64编码解码api 设计标准化总结java php c#.net 1. Base64编码,1 1.1. 子模式 urlsafe Or  url unsafe2 1.2. 其他的二进制数据表示法  bin2hex() ,Quoted-printable ,UUencode2 2. Base64常用api2 2.1. ------------解码api2 2.2. decode(String s, OutputStream out)2 2.3. 

java对文件的二进制流base64编码解码

1.java对文件的二进制流base64编码解码 一般保存文件的时候选择的方式是将url存进数据库.今天遇到一个对接传文件流的二进制base64编码,简单记录一下. 依赖于commons-io包和commons-codec包. 编码的方法如下: public static String encodeFile(File file) throws IOException { byte[] readFileToByteArray = FileUtils.readFileToByteArray(file

Base64编码解码算法

Base64不是什么新奇的算法了,不过如果你没从事过页面开发(或者说动态页面开发,尤其是邮箱服务),你都不怎么了解过,只是听起来很熟悉. 对于黑客来说,Base64与MD5算法有着同样的位置,因为电子邮箱(e-mail)正文就是base64编码的. 那么,我们就一起来深入的探讨一下这个东东吧. 对于一种算法,与其问"它是什么?",不如问"它实现了什么?" Base64实现了:将任意字节转为可读字符的编码. 我们知道,除了页面上的文本,计算机中的数据还有很多是不可见的

[C语言]Base64编码解码

Base64编码解码 一,Base64编码原理 Base64编码的字符数组如下所示 : ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ 字符串转Base64编码:取3字节的字符串转换为四字节的字符串,依次往后转换.得到Base64编码字符串.具体原理如下: 1,如果需要编码的原串字节数刚好为3的倍数,那么转换规则如下: 以中文字符'严'为例,'严'字的UTF-8编码为:0xE4B8A5 = 11100100  10

OpenSSL 使用 base64 编码/解码(liang19890820)

关于 OpenSSL 的介绍及安装请参见:Windows 下编译 OpenSSL 下面主要介绍有关 OpenSSL 使用 base64 编码/解码. 简述 编码解码 更多参考 编码/解码 #include <openssl/evp.h> #include <openssl/bio.h> #include <openssl/buffer.h> #include <string> #include <iostream> using namespace

Java Base64 编码解码方案总结

Base64是一种能将任意Binary资料用64种字元组合成字串的方法,而这个Binary资料和字串资料彼此之间是可以互相转换的,十分方便.在实际应用上,Base64除了能将Binary资料可视化之外,也常用来表示字串加密过后的内容.如果要使用Java 程式语言来实作Base64的编码与解码功能,可以参考本篇文章的作法. 早期作法 早期在Java上做Base64的编码与解码,会使用到JDK里sun.misc套件下的BASE64Encoder和BASE64Decoder这两个类别,用法如下: fi

java base64编码解码

第一种.DatatypeConverter 使用JDK自带DatatypeConverter.java类实现,JDK版本必须>=1.6 /** * @Description base64编码 * @param * @return */ public static String encode(String str){ String base64Str = ""; try{ //String -> byte[] byte[] data = str.getBytes("

Base64编码解码原理

一.编码规则 Base64编码的思想是是采用64个基本的ASCII码字符对数据进行重新编码.它将需要编码的数据拆分成字节 数组.以3个字节为一组.按顺序排列24 位数据,再把这24位数据分成4组,即每组6位.再在每组的的最高位前 补两个0凑足一个字节.这样就把一个3字节为一组的数据重新编码成了4个字节.当所要编码的数据的字节数不是 3的整倍数,也就是说在分组时最后一组不够3个字节.这时在最后一组填充1到2个0字节.并在最后编码完成后在 结尾添加1到2个 "=". 例:将对ABC进行BA

android 图片base64编码解码

android 对图片编码解码demo package com.example.appdemos; import java.io.ByteArrayOutputStream; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.Bitmap.CompressFormat; import android.graphics.BitmapFactory; import android.