0


jar包获取resource下配置文件路径

我们在代码里可以这样写

  String krb5Conf = this.class.getClassLoader().getResource("krb5.conf").getFile();

但是打成jar包后就不行了,我们有很多方法获取jar包路径或者resource下文件路径

   File path = new File(ResourceUtils.getURL("classpath:").getPath());
  if (!path.exists()) path = new File("");
log.error("1:{}", path.getAbsolutePath());

//第二种
log.error("2:{}", System.getProperty("user.dir"));

//第三种
String path1 = ClassUtils.getDefaultClassLoader().getResource("test.txt").getPath();
                log.error("3:{}",URLDecoder.decode(path1, "utf-8"));

//第四种
String path2 = ResourceUtils.getURL("classpath:test.txt").getPath();
log.error("4:{}",path2);
//第五种
ApplicationHome h = new ApplicationHome(Demo.class);
File jarF = h.getSource();
log.error("5:{}",jarF.getParentFile().toString());

但是打印后你会发现路径里面带 !,此时就算你去掉!也不行

String path = ClassUtils.getDefaultClassLoader().getResource("test.txt").getPath();

就算把路径copy到linux,用cat命令也显示文件不合法,猜测打包之后的jar就是无法获取的

但是我们可以读取文件,然后写入固定路径,再使用

            write(getStringByInputStream(this.class.getClassLoader().getResourceAsStream("test.txt")),"/data/test.txt");
public static String getStringByInputStream(InputStream inputStream) {
  BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
  try {
      StringBuilder result = new StringBuilder();
      String line;
      while ((line = bufferedReader.readLine()) != null) {
          result.append(line);
      }
      return result.toString();
  } catch (Exception e) {
      try {
          inputStream.close();
          bufferedReader.close();
      } catch (Exception e1) {
      }
  }
  return null;

blic static void write(String txt, String file) {
  try {
      BufferedWriter out = new BufferedWriter(new FileWriter(file));
      out.write(txt);
      out.close();
  } catch (IOException e) {
  }

当然了,生产环境中我们一般都是容器目录挂载,然后直接引用的

比如让运维吧文件a.txt放到机器中,然后容器data/挂载到该文件目录,我们就可以直接用/data/a.txt了

标签: jar 大数据 java

本文转载自: https://blog.csdn.net/weixin_43283487/article/details/125747124
版权归原作者 这个程序猿可太秀了 所有, 如有侵权,请联系我们删除。

“jar包获取resource下配置文件路径”的评论:

还没有评论