利用Properties类关联相关配置文件
文件目录
代码:
package Lianxi;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.HashMap;
import java.util.Properties;
import java.util.Set;
public class MyProperties {
public static void main(String[] args) throws IOException {
//创建关联配置对像
Properties prop = new Properties();
//创建输入流,关联配置文件
FileInputStream fis = new FileInputStream("AllText\\wzw.properties");
//加载内容
prop.load(fis);
//添加内容
prop.setProperty("user","wzw");
prop.setProperty("password", "123");
//获取内容
String user = prop.getProperty("user");
String password = prop.getProperty("password");
System.out.println("我的账号是:"+user+"\r\n" +
"我的密码是:"+password);
//遍历集合
Set<String> s = prop.stringPropertyNames();
for (String s1 : s) {
System.out.println(s1+"="+prop.getProperty(s1));
}
}
}
结果
我的账号是:wzw
我的密码是:123
user=wzw
password=123
* 博客文章部分截图及内容来自于学习的书本及相应培训课程,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。
* 备注:王子威
* 我的网易邮箱:wzw_1314_520@163.com