要從配置文件中讀取數據,可以使用Java的Properties類。以下是一個示例代碼:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
Properties properties = new Properties();
try {
FileInputStream configFile = new FileInputStream("config.properties");
properties.load(configFile);
configFile.close();
// 從配置文件中讀取數據
String url = properties.getProperty("url");
String username = properties.getProperty("username");
String password = properties.getProperty("password");
System.out.println("URL: " + url);
System.out.println("Username: " + username);
System.out.println("Password: " + password);
} catch (IOException e) {
e.printStackTrace();
}
}
}
在這個示例中,我們首先創建一個Properties對象,并通過FileInputStream加載配置文件。然后,我們使用getProperty方法從配置文件中獲取特定的屬性值。在這個示例中,我們假設配置文件名為"config.properties",其中包含了"url"、"username"和"password"屬性的值。
請注意,配置文件的路徑可能需要根據你的實際情況進行修改。配置文件應該與Java代碼位于同一個目錄下。