"properties文件",是java所支持的配置文件类型.
java中的properties文件是一种配置文件,
主要用于表达配置信息,
文件类型为*.properties,
格式为文本文件,
文件的内容是格式是 "键=值"的格式,
在properties文件中,可以用"#"来作注释.
"Properties类",主要用于读取Java的配置文件.
Properties类表示一组持久的属性。
properties属性可以保存到流中或从流中加载。
properties属性列表中的每个键及其对应的值都是一个字符串。
properties属性列表可以包含另一个属性列表作为其“默认值”;
如果在原始属性列表中找不到属性键,则会搜索此第二个属性列表。
由于Properties继承自Hashtable,所以put和putAll方法可以应用于Properties对象。
强烈地不推荐使用它们,因为它们允许调用者插入其键或值不是字符串的条目。
应该使用setProperty方法。
load---加载;
store--存储;
load(Reader)/store(Writer,String)方法以一个简单的面向行的格式从以下格式加载和存储属性到基于字符的流。
load(InputStream)/store(OutputStream,String)方法的工作方式与加载(Reader)/存储(Writer,String)对相同,只是输入/输出流以ISO 8859-1字符编码编码。
public static Properties getProperties(String config) throws IOException { Properties properties = new Properties(); InputStreamReader in=null; FileInputStream inStream=null ; try { inStream = new FileInputStream(new File(config)); in = new InputStreamReader(inStream,("UTF-8")); // 处理中文字符流 properties.load(in); } catch (Exception e) { log.error("无法找到并使用配置文件: [ " + config+" ]"); } finally { if (inStream!=null) { inStream.close(); } if (in!=null) { in.close(); } } return properties; }