java操作properties文件
1、基本说明:
java中的properties文件是一种配置文件,主要用于表达配置信息,文件类型为*.properties,格式为文本文件,文件的内容是格式是"键=值"的格式,在properties
文件中,可以用"#"来作注释,properties文件在Java编程中用到的地方很多,操作很方便。
2、properties类的重要方法:
Properties 类存在于胞 Java.util 中,该类继承自 Hashtable
1>getProperty ( String key) , 用指定的键在此属性列表中搜索属性。也就是通过参数 key ,得到 key 所对应的 value。
2> load ( InputStream inStream) ,从输入流中读取属性列表(键和元素对)。通过对指定的文件(比如说上面的 test.properties 文件)进行装载来获取该文件中的所有
键 - 值对。以供 getProperty ( String key) 来搜索。
3>setProperty ( String key, String value) ,调用 Hashtable 的方法 put 。他通过调用基类的put方法来设置 键 - 值对。
4>store ( OutputStream out, String comments) , 以适合使用 load 方法加载到 Properties 表中的格式,将此 Properties 表中的属性列表(键和元素
对)写入输出流。与 load 方法相反,该方法将键 - 值对写入到指定的文件中去。
5. clear () ,清除所有装载的 键 - 值对。该方法在基类中提供。
总结:java的properties文件需要放到classpath下面,这样程序才能读取到,有关classpath实际上就是java类或者库的存放路径,在java工程中,properties放到
class文件一块。在web应用中,最简单的方法是放到web应用的WEB- INF\classes目录下即可,也可以放在其他文件夹下面,这时候需要在设置classpath环境变量的
时候,将这个文件夹路径加到 classpath变量中,这样也也可以读取到。在此,你需要对classpath有个深刻理解,classpath绝非系统中刻意设定的那个系统环境变
量,WEB-INF\classes其实也是,java工程的class文件目录也是。
2、操作properties文件的java方法 :
a、根据key读取value
/** * 获取testdate.properties文件中内容 */ public static String getprop(String key){ String s=null; InputStream in=null;//流对象(java流,单独去了解流相关的知识点) Properties props = new Properties(); String s1=null; try { in=Demo.class.getClassLoader().getResourceAsStream("testdate.properties");//Demo指的是当前类的名称 props.load(in);//从输入流中读取属性列表(键和元素对)。通过对指定的文件进行装载来获取该文件中的所有的键-值对,以供getProperty(String)来搜索;即想把所有的键值对存放到props对象中 s=props.getProperty(key);//通过键获取对应的值 s1=new String(s.getBytes("ISO-8859-1"),"UTF-8");//编码处理 } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } try { in.close();//关闭流,不关闭流容易占内存 } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } return s1; }
b、 读取properties的全部信息(网上下载)
public static void readProperties(String filePath) { Properties props = new Properties(); try { InputStream in = new BufferedInputStream (new FileInputStream(filePath)); props.load(in); Enumeration en = props.propertyNames(); while (en.hasMoreElements()) { String key = (String) en.nextElement(); String Property = props.getProperty (key); System.out.println(key+Property); } } catch (Exception e) { e.printStackTrace(); } }
c、写入properties信息(网上下载)
//写入properties信息 public static void writeProperties(String filePath,String parameterName,String parameterValue) { Properties prop = new Properties(); try { InputStream fis = new FileInputStream(filePath); //从输入流中读取属性列表(键和元素对) prop.load(fis); //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。 //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。 OutputStream fos = new FileOutputStream(filePath); prop.setProperty(parameterName, parameterValue); //以适合使用 load 方法加载到 Properties 表中的格式, //将此 Properties 表中的属性列表(键和元素对)写入输出流 prop.store(fos, "Update '" + parameterName + "' value"); } catch (IOException e) { System.err.println("Visit "+filePath+" for updating "+parameterName+" value error"); } } public static void main(String[] args) { readValue("info.properties","url"); writeProperties("info.properties","age","21"); readProperties("info.properties" ); System.out.println("OK"); }
http://www.cnblogs.com/panjun-Donet/archive/2009/07/17/1525597.html