Reputation: 570
i am currently coding settings for a project.
Today i have found out that this project will be running on multiple VM's and that is why i have to scrap my Preferences Wrapper and code a new one.
What java.util.prefs.Preferences-like Frameworks are there except Properties? I do want the ability to save more than just String types.
Thank you
Upvotes: 0
Views: 45
Reputation: 1842
Take a look to Apache Commons Preferences. It supports several formats.
Upvotes: 1