*.properties ファイルに書き込みたい。これが私のコードです。
properties = loadProperties("user.properties");//loads the properties file
properties.setProperty(username, password);
try {
properties.store(new FileOutputStream("user.properties"), null);
System.out.println("Wrote to propteries file!" + username + " " + password);
例外は発生しませんが、出力がファイルに書き込まれません。
これも私のファイル構造です:
あなたの答えに感謝します!!!
アップデート
プロパティファイルを次のようにロードします。
InputStream in = ClassLoader.getSystemResourceAsStream(filename);
私の質問は、特定のパスからロードする方法ですか?
これが私の「新しい」ファイル構造です。