在android中将密码保存在设备内存中
我正在创建一个使用用户名/密码连接到服务器的应用程序,我想启用“保存密码”选项,这样用户就不必在每次应用程序启动时输入密码。 任何人都可以告诉我该怎么做吗? 谢谢。
I am creating an application which connects to the server using username/password and I would like to enable the option "Save password" so the user wouldn't have to type the password each time the application starts.
Can any one please tell me how to do this??
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,您可以使用 SharedPreferences
干杯!
In such a case you would use SharedPreferences
Cheers!
如何保存数据,你可以看这里http://developer.android。 com/guide/topics/data/data-storage.html
但要注意以未加密的方式保存密码。将其加密保存并创建一种可以使用已加密的密码进行检查的方法。
How to save data, you can look here http://developer.android.com/guide/topics/data/data-storage.html
But beware to save the password unencrypted. Save it encrypted and create a way you can check using the already encrypted password.