共计 729 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中读取配置文件的方法是使用 Properties 类。以下是读取配置文件的步骤:
- 创建一个 Properties 对象:
Properties props = new Properties();
- 使用 load() 方法加载配置文件:
try {props.load(new FileInputStream("config.properties"));
} catch (IOException e) {e.printStackTrace();
}
- 通过 getProperty() 方法获取配置文件中的属性值:
String value = props.getProperty("key");
完整的示例代码如下:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {public static void main(String[] args) {Properties props = new Properties();
try {props.load(new FileInputStream("config.properties"));
} catch (IOException e) {e.printStackTrace();
}
String value = props.getProperty("key");
System.out.println("Value:" + value);
}
}
上述代码假设配置文件名为 ”config.properties”,其中包含一个名为 ”key” 的属性。通过调用 getProperty(“key”) 方法,可以获取该属性的值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完