公分.net

博客园 首页 新随笔 联系 订阅 管理

解答:

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();


posted on 2005-01-09 16:25  wzyu  阅读(431)  评论(0)    收藏  举报