1、使用类加载器加载
ClassLoader classLoader = 当前类.class.getClassLoader();
InputStream is = classLoader.getResourceAsStream(name:"里面是src下的地址");,
如果properties文件不在src下那么会报空指针异常警告
2、字节流加载方式
FileInputStream fis=new FileInputStream(new File("test.properties"));
当properties文件在module下面是用这种方式