内容格式
Java 开发中,需要将⼀些易变的配置参数放置再 XML 配置⽂件或者 properties 配置⽂件中。然⽽ XML 配置⽂件需要通过 DOM 或SAX ⽅式解析,⽽读取 properties 配置⽂件就⽐较容易。
成才的名言properties ⽂件内容格式:
在我们平时写程序的时候,有些参数是经常改变的,⽽这种改变不是我们预知的。⽐如说我们开发了⼀个操作数据库的模块,在开发的时候我们连接本地的数据库那么IP ,数据库名称,表名称,数据库主机等信息是我们本地的,要使得这个操作数据的模块具有通⽤性,那么以上信息就不能写死在程序⾥。通常我们的做法是⽤配置⽂件来解决。
在Java中,其配置⽂件常为.properties⽂件,格式为⽂本⽂件,JDK 内置的java.util.Properties 类 ⽀持.properties ⽂件的读写,为我们操作 .properties ⽂件提供了便利。
设数据如下:
#以下为服务器、数据库信息
dbPort = localhost
databaseName = mydb
dbUserName = root
dbPassword = root
#以下为数据库表信息
dbTable = mytable
罗珊珊#以下为服务器信息
ip = 192.168.0.9
在配置⽂件db.properties 中,其中# 开始的⼀⾏为注释信息;在等号“= ”左边的我们称之为key ;等号“= ”右边的我们称之为value 。(其实就是我们常说的键- 值对)key 应该是我们程序中的变量。⽽value 是我们根据实际情况配置的。
连接路由器不能上网⼆ Java中Properties类的操作
ava中有个⽐较重要的类Properties(Java.util.Properties),主要⽤于读取Java的配置⽂件,⽂件的内容的格式是“键=值”的格式,⽂本注释信息可以⽤"#"来注释。Properties类提供了⼏个主要的⽅法:
1 load( InputStream inStream )
这个⽅法可以从 .properties属性⽂件 对应的⽂件输⼊流中,加载属性列表到Properties类对象,即通过对上⾯的 properties ⽂件进⾏装载来获取该⽂件中的所有键 - 值对。以供 getProperty ( String key) 来搜索。
Properties pro = new Properties();
FileInputStream in = new FileInputStream("ab.properties");
pro.load(in);
in.close();
2 getProperty ( String key )
获取属性信息
即⽤指定的键在属性列表中搜索属性 也就是通过参数 key 得到 key 所对应的 value。
读取配置文件失败Properties pro = new Properties();
FileInputStream in = new FileInputStream("ab.properties");
pro.load(in);
String value = Property(key);//根据key获取内容
in.close();
广东省内旅游景点3 setProperty ( String key, String value )
设置属性信息
即通过调⽤基类的put⽅法来设置 键 - 值对。
4 store( OutputStream out, String comments )
这个⽅法将Properties类对象的属性列表保存到输出流中
即与 load ⽅法相反,该⽅法将键 - 值对写⼊到指定的⽂件中去
FileOutputStream oFile = new FileOutputStream(file, "a.properties");
pro.store(oFile, "Comment");
oFile.close();
Java读取Properties⽂件
Java读取Properties⽂件的⽅法有很多,但是最常⽤的还是通过java.lang.Class类 getResourceAsStream(String name)⽅法来实现,如下可以这样调⽤:
InputStream in = getClass().getResourceAsStream("资源Name");
但是也可以使⽤InputStream抽象类中的FileInputStream实现类进⾏读取。
InputStream in= new BufferedInputStream(new FileInputStream(filePath));
根据key读取value
读取properties的全部信息
写⼊新的properties信息
//关于Properties类常⽤的操作
public class TestProperties {
//根据Key读取Value
public static String GetValueByKey(String filePath, String key) {
Properties pps = new Properties();
try {
InputStream in = new BufferedInputStream (new FileInputStream(filePath));
pps.load(in);
String value = Property(key);
System.out.println(key + " = " + value);
return value;
}catch (IOException e) {
e.printStackTrace();
return null;
}
}
//读取Properties的全部信息
public static void GetAllProperties(String filePath) throws IOException {
Properties pps = new Properties();
InputStream in = new BufferedInputStream(new FileInputStream(filePath));
pps.load(in);
Enumeration en = pps.propertyNames(); //得到配置⽂件的名字
while(en.hasMoreElements()) {
String strKey = (String) en.nextElement();
String strValue = Property(strKey);
System.out.println(strKey + "=" + strValue);
}
}
//写⼊Properties信息
public static void WriteProperties (String filePath, String pKey, String pValue) throws IOException { Properties pps = new Properties();
InputStream in = new FileInputStream(filePath);
//从输⼊流中读取属性列表(键和元素对)
pps.load(in);
//调⽤ Hashtable 的⽅法 put。使⽤ getProperty ⽅法提供并⾏性。
//强制要求为属性的键和值使⽤字符串。返回值是 Hashtable 调⽤ put 的结果。
OutputStream out = new FileOutputStream(filePath);
pps.setProperty(pKey, pValue);
//以适合使⽤ load ⽅法加载到 Properties 表中的格式,
//将此 Properties 表中的属性列表(键和元素对)写⼊输出流
pps.store(out, "Update " + pKey + " name");仙女湖 林妙可
}
public static void main(String [] args) throws IOException{
//String value = GetValueByKey("db.properties", "name");
/
/System.out.println(value);
//GetAllProperties("db.properties");
WriteProperties("db.properties","long", "212");
}
}
运⾏main函数得到:
#Update long name
#Sun Feb 23 18:17:16 CST 2014
name=JJ
Weight=4444
long=212
Height=3333
从上⾯的的例⼦当中可以知道 当系统配置⽂件数量过⼤时候,需要单独写⼀个读取配置⽂件的类。然后在Main函数或者其他可运⾏⽅法中执⾏(通过上⾯的例⼦不难看出,在Java中操作配置⽂件是⾮常简单的。在⼀个需要⽤到⼤量配置信息的模块或系统⾥,我们有必要封装⼀个专门的类来共使⽤。通过最后的main函数调⽤。)
发布评论