700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > java如何读取.properties配置文件

java如何读取.properties配置文件

时间:2020-11-06 08:02:23

相关推荐

java如何读取.properties配置文件

Properties类

1.简介

Properties 继承于 Hashtable。表示一个持久的属性集.属性列表中每个键及其对应值都是一个字符串。由于继承于Hashtable,当从配置文件中读取出配置信息到Properties对象中后,其中的配置信息是无序的。

2.读取properties配置文件

文件内容

代码

public class Main {public static void main(String[] args) {Properties properties = new Properties();try{FileInputStream in = new FileInputStream("javaTest/src/test.properties");properties.load(in); //将配置信息加载到properties对象中in.close();} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}for(Map.Entry<Object,Object> item : properties.entrySet()){//遍历输出从配置文件中读取的信息System.out.println(item.getKey() + "=" + item.getValue());}}}

运行结果

3.将配置信息写入properties配置文件

代码

public static void main(String[] args) {Properties properties = new Properties();properties.put("user","root");properties.put("password","123456");try{FileOutputStream out = new FileOutputStream("javaTest/src/test.properties");properties.store(out,null); //将Properties对象中的配置信息存储到文件中out.close();} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}}

运行结果

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。