Example #1
0
  @Test
  public void testStore() throws IOException {
    BufferedWriter writer = new BufferedWriter(new FileWriter("/home/x/tmp/ccc.prop"));
    // prop.store(writer);

    prop.add("section3", "abc.d", "abcccc", "some ttt");
    prop.add(null, "cc", "my name is cc", null);
    prop.store(writer);
  }