儲存陣列資料到SharedPreferences

2022-09-11 18:21:13 字數 684 閱讀 5831

參考自長城great的部落格: 

如果要陣列資料(如boolean 、int等)到sharedpreferences時,我們可以先將陣列資料組織成json資料儲存到sharedpreferences,讀取時則對json資料進行解析就ok了。

儲存boolean 陣列資料:

1

public

static

void s**eapkenalblearray(context context,boolean

booleanarray)

7 sharedpreferences.editor editor =prefs.edit();

8editor.putstring(apk_enable_array,jsonarray.tostring());

9editor.commit();

10 }

讀取資料:

1

public

static

boolean getapkenablearray(context context,int

arraylength)

211 } catch

(exception e)

14return

resarray;

15 }

PHP儲存陣列到資料庫

陣列是 php 開發中使用最多的資料型別之一,對於結構化的資料尤為重要。很多時候我們需要把陣列儲存到資料庫中,實現對結構化資料的直接儲存和讀取。staff array array name 洪七 number 101 男 job 總經理 mobile array 01234567890 987654...

PHP儲存陣列到資料庫

myarr array dove scdn blog 陣列是 php 開發中使用最多的資料型別之一,對於結構化的資料尤為重要。很多時候我們需要把陣列儲存到資料庫中,實現對結構化資料的直接儲存和讀取。對於這樣的資料,mysql資料庫是無法直接寫入的,那麼有什麼辦法呢?有,但是需要稍微轉換一下,不過也很...

儲存DataGridView資料到excel

這個是匯出資料的類。特別說明 匯出時需要有乙個只有一行標題列名行的excel檔案。public class cexcelwrite destfilename string commstr string commstr1 m oleconn new oledbconnection connstr m ...