首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java访问*properties资源文件

2012-08-26 
java访问*.properties资源文件import java.io.FileInputStreamimport java.io.FileOutputStreamimport j

java访问*.properties资源文件

import java.io.FileInputStream;   import java.io.FileOutputStream;   import java.util.Properties;     public class PropertyEditor {       public static void main(String[] args) throws Exception {           Properties prop = new Properties();// 属性集合对象           FileInputStream fis = new FileInputStream("prop.properties");// 属性文件输入流   (相对于根目录下的文件名,要加上包名 “src/prop.properties”)        prop.load(fis);// 将属性文件流装载到Properties对象中           fis.close();// 关闭流             // 获取属性值,sitename已在文件中定义           System.out.println("获取属性值:sitename=" + prop.getProperty("sitename"));           // 获取属性值,country未在文件中定义,将在此程序中返回一个默认值,但并不修改属性文件           System.out.println("获取属性值:country=" + prop.getProperty("country", "中国"));             // 修改sitename的属性值           prop.setProperty("sitename", "中国");           // 添加一个新的属性studio           prop.setProperty("studio", "Boxcode Studio");           // 文件输出流           FileOutputStream fos = new FileOutputStream("prop.properties");           // 将Properties集合保存到流中           prop.store(fos, "Copyright (c) Boxcode Studio");           fos.close();// 关闭流       }   }  


prop.properties
sitename=\u4E2D\u56FD
siteurl=www.abcjava.com  
studio=Boxcode Studio

热点排行