当前位置 : 主页 > 编程语言 > c++ >

获取resources下的文件的路径

来源:互联网 收集:自由互联 发布时间:2021-07-03
gistfile1.txt String path = Object.class.getClassLoader().getResource("system_name.json").getPath(); gistfile2.txt String path = Thread.currentThread().getContextClassLoader().getResource("system_name.json").getPath();
gistfile1.txt
String path = Object.class.getClassLoader().getResource("system_name.json").getPath();
gistfile2.txt
String path = Thread.currentThread().getContextClassLoader().getResource("system_name.json").getPath();
网友评论