溫馨提示×

Java如何實(shí)現(xiàn)讀取配置文件

小億
103
2023-09-28 17:48:27
欄目: 編程語言

在Java中,可以使用java.util.Properties類來讀取配置文件。以下是一個(gè)簡單的例子:

  1. 創(chuàng)建一個(gè)名為config.properties的配置文件,內(nèi)容如下:
username=admin
password=123456
  1. 在Java代碼中使用Properties類來讀取配置文件:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
Properties prop = new Properties();
FileInputStream input = null;
try {
input = new FileInputStream("config.properties");
prop.load(input);
String username = prop.getProperty("username");
String password = prop.getProperty("password");
System.out.println("username: " + username);
System.out.println("password: " + password);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}

運(yùn)行以上代碼,將會(huì)輸出:

username: admin
password: 123456

以上代碼使用Properties類的getProperty方法來獲取配置文件中的屬性值。配置文件需要位于Java代碼所在的目錄中,或者通過相對(duì)路徑或絕對(duì)路徑指定其位置。

0