我正在尝试将JSON数组保存到Android中的本地存储中,但我无法检索它
//that to send Json array to shared preferences
save.edit().putString("courses", courses.toString()).apply();
//that to retrieve it
String jsonObject = PreferenceManager.
getDefaultSharedPreferences(this).getString("courses","");
这个问题的解决方案是什么?