这篇文章主要介绍了java简单读取properties配置文件的方法,涉及java针对properties配置的载入及文件属性读取相关操作技巧,需要的朋友可以参考下
本文实例讲述了java简单读取properties配置文件的方法。分享给大家供大家参考,具体如下:
读取配置文件,小结如下
import java.io.FileNotFoundException; import java.io.IOException; import java.util.Properties; public class loadConf { private Properties prop = new Properties(); private void loadconf() throws FileNotFoundException, IOException { String path = "com/jlc/util/user.properties"; prop.load(loadConf.class.getClassLoader() .getResourceAsStream(path)); } public loadConf() throws FileNotFoundException, IOException { loadconf(); } public boolean chkProperty(String _key) { return prop.containsKey(_key); } public String getProperty(String _key) { return prop.getProperty(_key); } public static void main(String[] args) throws FileNotFoundException, IOException { loadConf mycnf = new loadConf(); System.out.println(mycnf.chkProperty("address")); System.out.println(mycnf.getProperty("poart")); } }
Atas ialah kandungan terperinci Java读取properties配置文件的简单实例. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!