下面给你应急之参考,关于java.util.Properties的详细参数及方法,请你参看JAVADOC相关资料,不D在问吧!Java中提供了一个java.util.Properties工具类,使用Properties类您可以方便的从一个.properties属性文件中读取设置参数,示例代码如下:
    Properties props = new Properties();    props.load(new FileInputStream("filename.properties"));    String value = props.getProperty("propertyname");
如果您的.properties文件打包入一个Jar或War文件,您可以使用ClassLoader的getResourceAsStream()方法得到一个InputStream对象,示例代码如下:
        ClassLoader cl = this.getClass().getClassLoader();        InputStream is = cl.getResourceAsStream("com/company/application/application.properties");
存储这些参数时,您首先需要得到一个OutputStream对象,然后使用Properties的store()方法。示例代码如下:
    Properties prop = new Properties();    FileOutputStream output = new FileOutputStream("Test.properties");    prop.store(output,"my testproperties");    output.flush();    output.close();