When I load a PropertyFileConfiguration the parser expects escaped values in the file (e.g. \ instead of ). However, when saving a PropertyFileConfiguration these values do not get escaped, which means that loading fails the next time I try to load the file.
foo.txt before:
Code:
AutoPtr<PropertyFileConfiguration> test = new PropertyFileConfiguration("foo.txt");
test->save("foo.txt");
foo.txt after: