首页 > 代码库 > Java中使用配置文件——properties类

Java中使用配置文件——properties类

    在java.util 包下面有一个类 Properties,该类主要用于读取项目中的配置文件(以.properties结尾的文件和xml文件)。

使用示例:

Java类

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

   InputStream inputStream = Agent.class.getClassLoader().getResourceAsStream("config.properties");
   Properties properties = new Properties();
   properties.load(inputStream);
   String time = properties.getProperty("period");

配置文件config.properties:

#timer
period=30

该示例表示在config.properties中配置属性period的值为30,在java类中直接调用该属性获取其配置值。

Java中使用配置文件——properties类