加载.properties方式
相对路径时注意:是相对项目(即包下)还是相对当前类(一般都是相对当前项目)(对于非class的资源文件eclipse编译时会直接放到bin目录下)
1.一般是从目录中加载:需要指明路径
2.另外就是通过加载器加载:配置只要是项目目录下就可以
3.spring提供加载方式(org.springframework.core.io.ClassPathResource.ClassPathResource(String path))
systemProps = new Properties();
systemProps.load(new ClassPathResource("system.properties").getInputStream());