What is the best way to save user settings in java application?

The Preferences API is a nice way to store user and system preferences. If you want to store passwords, you’ll have to encrypt them. Here is a nice article that can get you started.

Encrypted Preferences in Java

Leave a Comment