What is the best way to save user settings in java desktop app securely? For example If I want to save an Ftp account settings what is the best way to do that?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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