以下是一个示例的SharedPreferences工具类,其中包含了setList()和getList()方法,用于将List序列化为JSON字符串并存储到SharedPreferences中,以及从SharedPreferences中获取JSON字符串并反序列化为List对象:
import android.content.Context;
import android.content.SharedPreferences;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;public class SharedPreferencesUtils {private static final String PREFS_NAME = "MyPrefs";private static final String KEY_LIST = "dataList";public static void setList(Context context, List<String> dataList) {SharedPreferences sharedPreferences = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);SharedPreferences.Editor editor = sharedPreferences.edit();Gson gson = new Gson();String json = gson.toJson(dataList);editor.putString(KEY_LIST, json);editor.apply();}public static List<String> getList(Context context) {SharedPreferences sharedPreferences = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);String json = sharedPreferences.getString(KEY_LIST, null);if (json == null) {return new ArrayList<>();}Gson gson = new Gson();Type type = new TypeToken<List<String>>() {}.getType();return gson.fromJson(json, type);}
}
在上述代码中,我们定义了一个SharedPreferencesUtils工具类,其中包含了setList()和getList()方法。
setList()方法接收一个Context对象和一个List对象作为参数,将List对象序列化为JSON字符串,并使用SharedPreferences将其存储起来。
getList()方法接收一个Context对象作为参数,从SharedPreferences中获取JSON字符串,并将其反序列化为List对象后返回。
使用这两个方法,你可以方便地将List对象序列化为JSON字符串并存储到SharedPreferences中,以及从SharedPreferences中获取JSON字符串并反序列化为List对象。
希望对你有所帮助!如果还有其他问题,请随时提问。