本文主要是介绍Java高级Day35-Properties,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
102.Properties类
public class Properties01 {public static void main(String[] args) throws IOException{\//读取mysql.properties 文件,并得到ip,user 和 pwdBufferedReader br = new BufferedReader(new FileReader("src\\mysql.properties"));String line = "";while((line = br.readLine()) != null){//循环读取String[] split = line.split("=");System.out.println(split[0] + "值是:" + split[1]);}br.close();} } //可以实现,但不方便
Properties读取,修改,创建文件
配置文件格式: 键=值
注意:键值对不需要有空格,值不需要用引号引起来,默认类型是String
Properties的常见方法:
-
load:加载配置文件的键值对到Properties对象
-
list:将数据显示到指定设备
-
getProperty(key):根据键获取值
-
setProperty(key,value):设置键值对到Properties对象
-
store:将Properties中的键值对存储到配置文件,在idea中,保存信息到配置文件,如果含有中文,会存储为unicode码
案例:
//1.使用Properties类完成对mysql.properties的读取 public class HelloJava {public static void main(String[] args) throws Exception {//1.创建Properties对象Properties properties = new Properties();//2.加载指定配置文件properties.load(new FileReader("src\\mysql.properties"));//3.把k-v显示到控制台properties.list(System.out);//4.根据key获得对应的值String user = properties.getProperty("user");String pwd = properties.getProperty("pwd");System.out.println("用户名=" + user);System.out.println("密码=" + pwd);} } //2.使用Properties类添加key-val到新文件mysql2.properties中 public class HelloJava {public static void main(String[] args) throws Exception {//创建Properties对象Properties properties = new Properties();//创建文件//若该文件没有key,就是创建//若文件有key,就是修改properties.setProperty("charset","utf8");properties.setProperty("user","汤姆");properties.setProperty("pwd","abc111");//将k-v存储到文件中properties.store(new FileOutputStream("src\\mysql2.properties"),null);//null代表注释System.out.println("保存配置文件成功");} }
这篇关于Java高级Day35-Properties的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!