首页 > 代码库 > java类读取其所在jar包外部的配置文件
java类读取其所在jar包外部的配置文件
通过读流的方式getResourceAsStream();
设置静态块,对象装载时只执行一次;
提供get方法来访问配置对象
public class FileConfig { private static String ACCESS_KEY;private static String END_POINT;static { Properties props = new Properties(); try { props.load(FileConfig.class.getResourceAsStream("/resource.properties")); ACCESS_KEY = props.getProperty("accessKey"); END_POINT = props.getProperty("endPoint"); } catch (Exception e) { System.out.println("can not find resource.properties file"); } } public static String getAccessKey() { return ACCESS_KEY; } public static String getEndPoint() { return END_POINT; } }
java类读取其所在jar包外部的配置文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。