欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

idea 相对路劲

程序员文章站 2022-05-10 11:37:53
...

idea 相对路劲 想要读取该项目中的resources下的static文件夹中的文件

String path = this.getClass().getClassLoader().getResource("./static/rsa_private_key.pem").getPath();  //获取路径
FileReader fr = new FileReader(path);
相关标签: idea