资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

javaFastDFS文件下载到本地的方法

本篇内容介绍了“java FastDFS文件下载到本地的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

专注于为中小企业提供成都做网站、成都网站制作服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业郑州免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了1000多家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。

package cn.bywin.cbvsp.controller;

import cn.bywin.cbvsp.DAL.BO.po.clickhouse.BaseFrameCh;
import cn.bywin.cbvsp.DAL.DAO.clickhouse.ClickHouseBaseDao;
import com.github.tobato.fastdfs.domain.proto.storage.DownloadByteArray;
import com.github.tobato.fastdfs.service.FastFileStorageClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.imageio.stream.FileImageOutputStream;
import java.io.File;
import java.util.HashSet;
import java.util.List;

/**
 * @author linbin
 * @create 2019-07-25 15:37
 */
@RestController
@Component
@RequestMapping("linbin")
public class DownLoadController {
    @Autowired
    private ClickHouseBaseDao clickHouseBaseDao;

    @Autowired
    private FastFileStorageClient storageClient;

    @PostMapping("/download")
    public void test() {
        //查找这个时间段的所有摄像头
        List strings1 = clickHouseBaseDao.selectByTime("select video_source_id from cbvsp.base_fragment  where real_time between  '2019-07-24 20:00:00'  and '2019-07-24 20:10:00'");

        HashSet s = new HashSet<>();
        strings1.forEach(e->{
            s.add(e);
        });
        for (String s1 : s) {
            List strings = clickHouseBaseDao.selectByTime("select file_id from cbvsp.base_fragment where real_time between  '2019-07-24 20:00:00'  and '2019-07-24 20:10:00' and video_source_id='"+s1+"';");
            buildFolder("/home/deploy/191-20to820-video/"+s1+"");
            strings.forEach(e -> {
                if(e.contains("35.26.59.199")){
                    return;
                }
                testHome(e,s1);
            });
        }

    }


    public void testHome(String fileUrl,String dir) {
        String path = fileUrl.substring(32);
        int i = path.indexOf('/');
        int i2 = path.indexOf("/", i + 1);
        int i3 = path.indexOf("/", i2 + 1);
        String ss = path.substring(i3 + 1);
        DownloadByteArray downloadByteArray = new DownloadByteArray();
        byte[] bytes = storageClient.downloadFile("group1", path, downloadByteArray);
        byte2image(bytes, "/home/deploy/191-20to820-video/"+dir+"/" + ss);
    }

    //byte数组到图片到硬盘上
    public void byte2image(byte[] data, String path) {
        if (data.length < 3 || path.equals("")) return;//判断输入的byte是否为空
        try {
            FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path));//打开输入流
            imageOutput.write(data, 0, data.length);//将byte写入硬盘
            imageOutput.close();
            System.out.println("Make Picture success,Please find image in " + path);
        } catch (Exception ex) {
            System.out.println("Exception: " + ex);
            ex.printStackTrace();
        }
    }


    public static String buildFolder(String path) {
        //读取目录路径
        File file = new File(path);
        //推断是否存在
        if (!file.exists() && !file.isDirectory()) {
            try {
                System.out.println("目录不存在!");
                //生成目录
                file.mkdir();
            } catch (Exception e) {
                e.printStackTrace();
            }
        } else {
            System.out.println("目录存在!");
        }

        return path;
    }
}

“java FastDFS文件下载到本地的方法”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!


文章名称:javaFastDFS文件下载到本地的方法
分享URL:http://cdkjz.cn/article/pjgdgs.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220