摘要:
自己定义一个属性文件:例如prop.propertiesbaseFilePath=D\:/kuanter/resourcetesx=abcd 我们要做的第一步就是要将文件读取到Properties类对象中,由于load有一个参数是InputStream,所以我们可以用 InputStream的子类FileInputStream将属性文件读取到Properties对象中,知道prop.properties的路径,我们就用FileInputStream(String name)构造函数:Properties prop = new Properties();//属性集合对象 FileInput... 阅读全文