加载配置文件,获取指定字段值

Posted yangbocsu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加载配置文件,获取指定字段值相关的知识,希望对你有一定的参考价值。

加载配置文件,获取指定字段值

一、文件

  • test.txt 里面的内容
        url = www.yangbocsu.cn
        name = yb
        password = 168168
  • 所在路径
D:\\BaiduNetdiskDownload\\02-JDBC\\test.txt

二、参考代码

    public static void main(String[] args) 
        String path = "D:\\\\BaiduNetdiskDownload\\\\02-JDBC\\\\test.txt";

        File config = new File(path);           // 文件对象
        Properties pro = new Properties();      // 文件解析类
        try 
            pro.load(new FileInputStream(config));  // 加载配置文件

            String url = pro.getProperty("url");    // 获取指定字段值
            String name = pro.getProperty("name");
            String password = pro.getProperty("password");

            // 输出
            System.out.println("url = " + url);
            System.out.println("name = " + name);
            System.out.println("password = " + password);
         catch (IOException e) 
            throw new RuntimeException(e);
        
    

三、他法

使用资源绑定器 绑定 资源配置文件

    // 使用资源绑定器 绑定 资源配置文件
    ResourceBundle bundle = ResourceBundle.getBundle("test");
    String driver = bundle.getString("driver");
    String url = bundle.getString("url");
    String user = bundle.getString("user");
    String password = bundle.getString("password");

以上是关于加载配置文件,获取指定字段值的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot--注入指定的配置文件

文件值字段(Doc value Fields)

ArcGIS遇上PythonArcGIS Python获取某个字段的唯一值(获取指定字段的不同属性值)

ArcGIS遇上PythonArcGIS Python获取某个字段的唯一值(获取指定字段的不同属性值)

spring 读取配置文件,将值注入到静态字段

在页面加载时从隐藏字段中获取 JS 值