Android getSharedPreferences 存string数组
时间: 2023-09-29 07:11:01 浏览: 109
在 Android 中,你可以使用 SharedPreferences 存储一个字符串数组。下面是一个示例:
```java
// 获取 SharedPreferences 实例
SharedPreferences sharedPreferences = getSharedPreferences("my_prefs", Context.MODE_PRIVATE);
// 创建一个字符串数组
String[] colors = {"Red", "Green", "Blue"};
// 将字符串数组转换为以逗号分隔的字符串
String colorsString = TextUtils.join(",", colors);
// 将字符串数组存储到 SharedPreferences 中
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("colors", colorsString);
editor.apply();
```
在上面的代码中,我们首先获取了一个 SharedPreferences 实例,并将其命名为 "my_prefs"。然后,我们创建了一个字符串数组 colors,将其转换为以逗号分隔的字符串 colorsString,并将其存储到 SharedPreferences 中。在存储时,我们使用了 SharedPreferences.Editor 的 putString() 方法,并将键名设置为 "colors"。
要获取存储的字符串数组,可以使用以下代码:
```java
// 获取 SharedPreferences 实例
SharedPreferences sharedPreferences = getSharedPreferences("my_prefs", Context.MODE_PRIVATE);
// 从 SharedPreferences 中获取存储的字符串数组
String colorsString = sharedPreferences.getString("colors", "");
String[] colors = colorsString.split(",");
// 打印字符串数组
for (String color : colors) {
Log.d("TAG", color);
}
```
在上面的代码中,我们首先获取了一个 SharedPreferences 实例,并将其命名为 "my_prefs"。然后,我们从 SharedPreferences 中获取存储的字符串数组,使用了 SharedPreferences 的 getString() 方法,并将键名设置为 "colors"。获取到字符串数组后,我们使用 String 的 split() 方法将其拆分为一个字符串数组 colors,并打印出每个元素。
阅读全文