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

use resource file in jar

时间:2020-04-09 12:52:01      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:tostring   file   try   NPU   div   str   utils   cep   class   

import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import org.apache.commons.io.IOUtils;

try {
      InputStream stream = getClass().getClassLoader().getResourceAsStream("a.html");
      return IOUtils.toString(stream, StandardCharsets.UTF_8);
    } catch (IOException e) {
      return e.toString();
    }

 

use resource file in jar

标签:tostring   file   try   NPU   div   str   utils   cep   class   

原文地址:https://www.cnblogs.com/tonggc1668/p/12665876.html

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