码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot 读取 resource 下文件

时间:2018-12-14 19:24:06      阅读:559      评论:0      收藏:0      [点我收藏+]

标签:code   work   rac   p12   读取   cer   cert   org   获取文件   

支持linux下读取

import org.springframework.core.io.ClassPathResource;
 
public InputStream getCertStream() {
          try {
            ClassPathResource classPathResource = new ClassPathResource("config/apiclient_cert.p12");
            //获取文件流
            InputStream certStream = classPathResource.getInputStream();
            this.certData = IOUtils.toByteArray(certStream);
            certStream.read(this.certData);
            certStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
   }

 

Spring Boot 读取 resource 下文件

标签:code   work   rac   p12   读取   cer   cert   org   获取文件   

原文地址:https://www.cnblogs.com/fengqiaoyebo/p/10120790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!