我正在使用Gson库保存和检索Players对象的ArrayList。
我的onStop()
@Override
protected void onStop() {
super.onStop();
SharedPreferences prefs = getSharedPreferences("X", MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
Gson gson = new Gson();
String guardJSON = gson.toJson(playersNoGuard);
editor.putString(GUARD, guardJSON);
editor.putString("lastActivity", getClass().getName());
editor.apply();
}
我的onCreate重要部分
ArrayList<Player> playersNoGuard;
RecyclerView myList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list_players_guard);
SharedPreferences prefs = getSharedPreferences("X", MODE_PRIVATE);
String guardJSON = prefs.getString(GUARD, null);
Type arrayListPlayers = new TypeToken<ArrayList<Player>>(){}.getType();
Gson gson = new Gson();
if(guardJSON != null) {
playersNoGuard = gson.fromJson(guardJSON, arrayListPlayers);
}
// Get the players and remove the Clairvoyant
Intent intent = this.getIntent();
playersNoGuard = intent.getParcelableArrayListExtra("PLAYERS");
[...] // Code skipped
}
但是当运行此活动时,我得到以下错误日志:
由以下原因引起:java.lang.IllegalStateException:预期为BEGIN_ARRAY,但在第1行第2列路径$处为BEGIN_OBJECT
这段代码有什么问题?
最佳答案
您可能在其他地方写入了相同的首选项条目。确保您的密钥(GUARD
)在整个应用程序中是唯一的。
关于android - 预期为BEGIN_ARRAY,但为BEGIN_OBJECT | ArrayList问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38525205/