-4
我不知道如何讀取Java Resources/src/configuration.properties文件中的屬性文件。我也想寫在那個屬性文件上。如何讀取和寫入我的Java Resources/src/configuration.properties中的屬性文件
謝謝。
我不知道如何讀取Java Resources/src/configuration.properties文件中的屬性文件。我也想寫在那個屬性文件上。如何讀取和寫入我的Java Resources/src/configuration.properties中的屬性文件
謝謝。
我不知道你嘗試了什麼,並從你嘗試讀取屬性文件的位置。
如果你想從Java中使用讀取屬性文件,此代碼:
public class ReadPropertiesFile {
public static void main(String[] args) {
try {
File file = new File("test.properties");//give the properties file path
FileInputStream fileInput = new FileInputStream(file);
Properties properties = new Properties();
properties.load(fileInput);
fileInput.close();
Enumeration enuKeys = properties.keys();
while (enuKeys.hasMoreElements()) {
String key = (String) enuKeys.nextElement();
String value = properties.getProperty(key);
System.out.println(key + ": " + value);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
你嘗試過什麼?你有什麼異常嗎?你使用maven嗎? – soorapadman
「我已經試過了,我全都沒有想法」 – f1sh
開始寫它。如果你有問題 - 你可以問 – STF