今天就跟大家聊聊有关如何从静态块或静态方法中导入properties文件,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
如何在静态块或静态方法中加载属性文件。
这里我们使用ClassLoader.class.getResourceAsStream()在静态块内的类路径中加载属性文件。确保该类在类路径代码中可用:?123456789101121314151617181920212223242526272829303132333435包com.java2novice.properties;
导入java.io.FileNotFoundException;
导入java.io.IOException;
导入java.io.InputStream;
导入java.util.Properties;
公共类MyPropInstanticBlock{private static Properties;
static{InputStream is=null;try{prop=new Properties();is=ClassLoader.class.getResourceAsStream(“/sample.Properties”);prop.load(is);}catch(FileNotFoundException e){e.printStackTrace();}catch(IOException e){e.printStackTrace();}
公共静态字符串getPropertyValue(字符串键){return prop.getProperty(键);}
公共静态void main(字符串a[]){System.out.println(“db.host:+getPropertyValue(“db.host”);System.out.println(“db.user:+getPropertyValue(“db.user”);System.out.println(“db.password:+getPropertyValue(“db.password”);}sample.properties?1234db.host=appdomain.java2novice.com db.user=java2novice db.password=mypassword db.service=orcl
输出:db.host:appdomain.java2novice.com db.user:java2novice db.password:mypassword
看完上述内容,你们对如何从静态块或静态方法中导入properties文件有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。