java key value 文件_Java使用java.util.Properties读取key=value格式配置文件

示例配置文件

app.config:app.name=MyApp

app.version=1.0

使用读取配置示例代码:package org.cjavapy.example.util;

import java.io.*;

import java.net.URL;

import java.util.Objects;

import java.util.Properties;

public class PropertiesExample {

public static void main(String[] args) {

Properties prop = new Properties();

try {

// 配置文件名

String fileName = "app.config";

ClassLoader classLoader = PropertiesExample.class.getClassLoader();

// 确保配置文件存在

URL res = Objects.requireNonNull(classLoader.getResource(fileName),

"Can't find configuration file app.config");

InputStream is = new FileInputStream(res.getFile());

// 载入配置文件

prop.load(is);

// 获取app.name key的值

System.out.println(prop.getProperty("app.name"));

// 获取app.version key的值

System.out.println(prop.getProperty("app.version"));

// 获取"app.type"的值,如果不存在,则返回默认值"cjavapy"

System.out.println(prop.getProperty("app.type","cjavapy"));

} catch (IOException e) {

e.printStackTrace();

}

}

}

输出结果:

MyApp

1.0

cjavapy

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值