public class Test {
public static void main(String[] args) throws IOException {
Properties properties = new Properties();
// FileReader reader = new FileReader("./test.properties");
// FileReader reader = new FileReader("test.properties");
FileReader reader = new FileReader("G:\\springboot-mybatis\\test.properties");
properties.load(reader);
System.out.println(properties.getProperty("name"));
}
}