import java.util.*; import java.io.*; public class HelloWorldSetProperties { public static void main(String[] args) { try { Properties prop = new Properties(); // プロパティファイルから名前と値のリストを読み込みます prop.load(new FileInputStream("javahello.properties")); // "javahello.message"に新しい値を設定します(上書き) prop.setProperty("javahello.message" , "Hola Mundo"); // "javahello.since"に値を設定します(新規追加) prop.setProperty("javahello.since" , "2002/02/03"); // プロパティのリストをファイルに保存します prop.store(new FileOutputStream("javahello.properties"), "javahello properties"); } catch (Exception e) { e.printStackTrace(); } } }