试试这个
String filePath = new File("").getAbsolutePath();filePath.concat("path to the property file");
[编辑]
正如@cmc所说,
String basePath = new File("").getAbsolutePath(); System.out.println(basePath); String path = new File("src/main/resources/conf.properties") .getAbsolutePath(); System.out.println(path);
两者都赋予相同的值。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)