Android SharedPreferences 儲存複雜物件

來源:互聯網
上載者:User

用SharedPreferences儲存一些常用的設定資訊很方便,但是我們知道SharedPreferences只能儲存一些簡單的類型   如何用SharedPreferences來儲存一些複雜的對象?下面以map為例,看看SharedPreferences 儲存複雜物件的方法 如果想用SharedPreferences存取複雜的資料類型,就需要對這些資料進行編碼。通常會將資料轉換成Base64編碼,然後將轉換後的資料以字串儲存。  儲存:  [java] //將map轉換為byte[]   ByteArrayOutputStream toByte = new ByteArrayOutputStream();  ObjectOutputStream oos = new ObjectOutputStream(toByte);  oos.writeObject(map);  //對byte[]進行Base64編碼   String payCityMapBase64 = new String(Base64Coder.encode(toByte.toByteArray()));  // 儲存   editor.putString(KEY_CITY, payCityMapBase64);  editor.commit();   //將map轉換為byte[]ByteArrayOutputStream toByte = new ByteArrayOutputStream();ObjectOutputStream oos = new ObjectOutputStream(toByte);oos.writeObject(map);//對byte[]進行Base64編碼String payCityMapBase64 = new String(Base64Coder.encode(toByte.toByteArray()));// 儲存editor.putString(KEY_CITY, payCityMapBase64);editor.commit();下面是讀取:   [java]  byte[] base64Bytes = Base64Coder.decode(prefer.getString(KEY_CITY, null));  ByteArrayInputStream bais = new ByteArrayInputStream(base64Bytes);  ObjectInputStream ois = new ObjectInputStream(bais);  map = (Map) ois.readObject();  boolean b= (Boolean) map.get(cityId);   byte[] base64Bytes = Base64Coder.decode(prefer.getString(KEY_CITY, null));ByteArrayInputStream bais = new ByteArrayInputStream(base64Bytes);ObjectInputStream ois = new ObjectInputStream(bais);map = (Map) ois.readObject();boolean b= (Boolean) map.get(cityId);     

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.