0
我是Android新手。我想在共享首選項中保存JSON數組。如何在SharedPreferences中保存JSON數組?
這是我的Java代碼:
while (managedCursor.moveToNext())
{
JSONObject jsonObject = new JSONObject();
try
{
jsonObject.put("number", number);
jsonObject.put("type", type);
jsonObject.put("fDate", fDate);
jsonObject.put("duration", duration);
}
catch (Exception e)
{
e.printStackTrace();
}
jsonArray.put(jsonObject);
}
managedCursor.close();
Log.d("array", jsonArray.toString());
轉換JSON轉換回JSON一個字符串sharedpreference
,並在SharedPreference保存爲一個字符串值 – rafid059
我想保存json數組,然後發佈到mysql服務器 –
你甚至讀過我發佈的鏈接嗎? – rafid059