栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

【JavaSE】Properties类,交互文件

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

【JavaSE】Properties类,交互文件

Properties类

一、先看一个需求二、类的基本介绍三、应用案例

1)使用Properties类完成对MySQL.properties的读取2)使用Properties 类来创建 配置文件, 修改配置文件内容 三、底层机制

一、先看一个需求

如下一个配置文件 mysql.properties
ip = 192.168.0.13
user = root
pwd = 12345

请问编程呢个读取 ip、user和pwd的值是多少

第一种:用传统的字节流读取
第二种:使用Properties类可以方便实现

第一种:

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class Properties1 {
    public static void main(String[] args) {

        //读取mysql.properties 文件,并得到ip, user 和 pwd
        BufferedReader br = null;
        try {
            br = new BufferedReader(new FileReader("D:\JavaProjects\b站草稿\IO控制流\src\mysql.properties"));
            String line = "";
            while ((line = br.readLine()) != null){
                String[] s = line.split("=");
                //如果我们要求指定的ip值
                if("ip".equals(s[0])) {
                    System.out.println(s[0] + "值是: " + s[1]);
                }
            }

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if (br != null){
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

二、类的基本介绍

1)专门用于读写配置文件的集合类
配置文件的格式:
键=值
键=值

2)注意:键值对不需要有空格,值不需要用引号引来。默认类型为String

3)Properties的常见的方法

load:加载配置文件的键值对到Properties对象list:将数据显示到指定设备getProperty(key):根据键获取值setProperty(key,value):设置键值对到Properties对象store:将Properties中的键值对存储到配置文件,在idea中,保存信息到配置文件,如果含有中文,会存储为unicode码 三、应用案例

1)使用Properties类完成对MySQL.properties的读取
2)使用Properties类添加Key-val 到新文件mysql2.properties中
3)使用Properties类完成对 mysql2.properties 的读取,并修改某个Key-val

1)使用Properties类完成对MySQL.properties的读取
import java.io.FileReader;
import java.io.IOException;
import java.util.Properties;

public class Properties02 {
    public static void main(String[] args) {

        //使用Properties 类来读取mysql.properties 文件

        //1. 创建Properties 对象
        Properties properties= new Properties();
        //2. 加载指定配置文件
        try {
            properties.load(new FileReader("D:\JavaProjects\b站草稿\IO控制流\src\mysql.properties"));

        } catch (IOException e) {
            e.printStackTrace();
        }
        //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 类来创建 配置文件, 修改配置文件内容
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;

public class Properties03 {
    public static void main(String[] args) {

        //使用Properties 类来创建 配置文件, 修改配置文件内容
        Properties properties = new Properties();

        //创建
        //1.如果该文件没有key 就是创建
        //2.如果该文件有key ,就是修改

        properties.setProperty("charset", "utf8");
        properties.setProperty("user", "汤姆");//注意保存时,是中文的 unicode码值
        properties.setProperty("pwd", "888888");

        //将k-v 存储文件中即可
        try {
            properties.store(new FileOutputStream("D:\JavaProjects\b站草稿\IO控制流\src\mysql.properties2"), null);
        } catch (IOException e) {
            e.printStackTrace();
        }
        System.out.println("保存配置文件成功~");
    }
}

三、底层机制

底层其实是哈希算法

Properties 父类是 Hashtable , 底层就是Hashtable 核心方法
            public synchronized V put(K key, V value) {
                // Make sure the value is not null
                if (value == null) {
                    throw new NullPointerException();
                }

                // Makes sure the key is not already in the hashtable.
                Entry tab[] = table;
                int hash = key.hashCode();
                int index = (hash & 0x7FFFFFFF) % tab.length;
                @SuppressWarnings("unchecked")
                Entry entry = (Entry)tab[index];
                for(; entry != null ; entry = entry.next) {
                    if ((entry.hash == hash) && entry.key.equals(key)) {
                        V old = entry.value;
                        entry.value = value;//如果key 存在,就替换
                        return old;
                    }
                }

                addEntry(hash, key, value, index);//如果是新k, 就addEntry
                return null;
            }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/756307.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号