public static void main(String args[]) {
String filePath = "/a.properties";
//writeProperties(filePath, "name", "wangmin");
System.out.println(ConfigInfo.readValue(filePath, "name1"));
}
报错:java.io.FileNotFoundException: \a.properties (系统找不到指定的文件。)
我的项目根目录下面有这个文件,这是怎么回事