用到了base64转图片文件的函数,记录一下

import java.io.*;
import sun.misc.*;

    //对图片文件进行Base64编码
    public String getImagebase64(String imgFileName) {
        byte[] data = null;
        try {
            InputStream in = new FileInputStream(imgFileName);
            data = new byte[in.available()];
            in.read(data);
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        
        BASE64Encoder encoder = new BASE64Encoder();
        return encoder.encode(data);
    }

    //Base64解码并保存图片文件
    public void saveImage(String base64, String imgFileName) {
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            byte[] bytes = decoder.decodeBuffer(base64);
            for (int i = 0; i < bytes.length; ++i) {
                if (bytes[i] < 0) {
                    bytes[i] += 256;
                }
            }
            OutputStream out = new FileOutputStream(imgFileName);
            out.write(bytes);
            out.flush();
            out.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
具体来说是因为这个原因:前端使用某个richEditor控件,当粘贴图片时会自动以base64数据的格式存放,考虑到直接存进数据库一来会有性能问题,二来会有字段长度问题,所以先把这些base64数据提取出来,保存成文件,再用文件路径替换img src=""中的内容,即可达到目的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值