很多项目的配置文件 ,直接放在propreties中,这样可以动态读取加载类文件,很是方便。今天就,记录下怎样使用类使用properties
import java.io.IOException;import java.io.InputStream;import java.util.Properties;public class test1{private static Properties props; static { InputStream instream=test1.class.getClassLoader.getResourceAsStream("dao.properties"); //获取到当前类目录根目录下的properties文件输入流 props=new Properties(); //读取加载这个输入流 props.load(instream); /**props.loadFromXML(new FileInputStream("a.xml"));可从xml中读取配置,当然a.xml要遵守 的要求**/ } public static void main(String args[]){ props.getProperty("abc"); //获取abc的值 props.setProperty("a", "hello world"); //存放key 为a value 为hello world的值。 }}