使用java.util.Properties\x0d\x0a\x0d\x0a1、创建一个Properties对象。\x0d\x0a2、使用对象的load方法加载
你的property
文件。\x0d\x0a3、使用getProperty方法取值。\x0d\x0a例子:\x0d\x0apackage com.bill.test\x0d\x0a\x0d\x0aimport java.io.FileInputStream\x0d\x0aimport java.util.Properties\x0d\x0a\x0d\x0apublic class Test {\x0d\x0apublic static void main(String[] args) throws Exception{\x0d\x0aProperties property = new Properties()\x0d\x0aproperty.load(new FileInputStream("你的文件位置"))\x0d\x0aString value = property.getProperty("你的属性的key")\x0d\x0a//TODO 使用value...\x0d\x0a}\x0d\x0a}property 属性文件的内容基本就是
每一行:
key=value
左边是键 右边是值。
调用的话通过java代码来读取文件中的内容,然后得到等号左右两边的信息对应到map中去供其他地方调用。
评论列表(0条)