-4
Java Resources/src/configuration.propertiesファイルにあるプロパティファイルの読み方がわかりません。私はそのプロパティファイルにも書き込みたい。Javaリソース/ src/configuration.propertiesにあるプロパティファイルの読み書き方法
ありがとうございました。
Java Resources/src/configuration.propertiesファイルにあるプロパティファイルの読み方がわかりません。私はそのプロパティファイルにも書き込みたい。Javaリソース/ 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