在Java中,可以使用java.util.Properties
類來讀取配置文件。以下是一個(gè)簡單的例子:
config.properties
的配置文件,內(nèi)容如下:username=admin
password=123456
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ì)路徑指定其位置。