请编写一段代码,在代码中使用SharedPreferences类将账户名(小明)和密码(it938495)保存到data.xml文件中。
时间: 2024-02-25 07:59:50 浏览: 75
SharedPreferences记住用户名密码
5星 · 资源好评率100%
好的,以下是代码示例:
```java
// 获取SharedPreferences对象
SharedPreferences sharedPreferences = getSharedPreferences("data", Context.MODE_PRIVATE);
// 获取SharedPreferences编辑器对象
SharedPreferences.Editor editor = sharedPreferences.edit();
// 存储账户名和密码
editor.putString("username", "小明");
editor.putString("password", "it938495");
editor.apply();
```
这段代码将会在应用的data.xml文件中保存账户名和密码,其中账户名的键为"username",密码的键为"password"。请注意,该文件只能被应用本身访问。
阅读全文