springboot图片回显(笔记、(13))

10 篇文章 0 订阅
9 篇文章 0 订阅
@GetMapping("filephoto/{afcid}")
public String filephoto(@PathVariable("afcid") String afcid, ModelMap mmap)
{
    ArcFileCategoryImg params = new ArcFileCategoryImg();
    params.setAfcId(afcid);
    List<ArcFileCategoryImg> list = arcFileCategoryImgService.selectArcFileCategoryImgList(params);

    List<String> list_img64 = new ArrayList<String>();
    for (ArcFileCategoryImg cimg : list) {
        String filepath = cimg.getAfciPath().replace("\\fileComfrim", fileComfrim);

        File img_file = new File(filepath);
        InputStream file_in = null;

        if (img_file.exists() && img_file.isFile()) {
            try {
                file_in = new FileInputStream(img_file);

                byte[] buffer = new byte[(int)img_file.length()];
                file_in.read(buffer);
                file_in.close();

                list_img64.add("data:image/jpg;base64," + Base64.encodeBase64String(buffer));
            } catch (FileNotFoundException e) {
                logger.error("", e);
            } catch (IOException e) {
                logger.error("", e);
            } finally {
                try {
                    if (file_in != null) file_in.close();
                } catch (IOException e) {
                    logger.error("", e);
                }
            }
        }
    }

    mmap.put("photolist",list_img64);
    return prefix + "/win_filephoto";
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值