java中读取配置文件的内容

说明:前三种是不被Spring管理的读取配置文件内容,后面是被Spring管理的读取配置文件内容

第一种:读取application.properties中的内容

第一种方式需要添加依赖

<dependency>
			<groupId>com.typesafe</groupId>
			<artifactId>config</artifactId>
			<version>1.2.1</version>
		</dependency>
public static void test01(){
        Config load = ConfigFactory.load("application.properties");
        String string = load.getString("ruoyi.name");
        System.out.println(load);
        System.out.println(string);
    }

第二种:读取application.yml中的内容

public static void test02() throws IOException {
        Resource resource = new ClassPathResource("application.yml");
        Properties props = PropertiesLoaderUtils.loadProperties(resource);
        String property = props.getProperty("addressEnabled");
        System.out.println(property);
    }

第三种:以BufferedInputStream流的方式读取配置文件内容

public static void test03() throws Exception{
        //2、通过InputStream进行读取文件
        //可以读取任意路径的文件
        Properties properties = new Properties();
        // 使用InPutStream流读取properties文件
        BufferedReader bufferedReader =
                new BufferedReader(new FileReader("E:/config.properties"));
        properties.load(bufferedReader);
        properties.getProperty("ruoyi.name");
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值