zoukankan      html  css  js  c++  java
  • Android软件开发之SharedPreferences

    SharedPreferences
    一种轻量级的数据保存方式
    以键值对的方式存储
    用于存储小批量的数据
     
    使用方法:
    SharedPreferences sp=
    getSharedPreferences("myopt"(文件名),Context.MODE_PRIVATE(数据存储方式));
    存储文件名,数据将保存在/data/data/basepackage/shared_prefs/myopt.xml
     
    存入数据
    putXXX
    SharedPreferences.Editor editor=sp.edit();
    Editor.putString("name","Tom");
    Editor.putInt("age",20);
    Editor.putFloat("name",10.1);
    Editor.commit;
    取出数据
    getXXX(key,default)
    SharedPreferences sp=getSharedPreferences("saveSetting",);
  • 相关阅读:
    解决死锁四大方式
    Windows内存管理简介:
    排序算法优劣
    排序
    HTTPs
    http和https的异同
    HTTP协议
    FTP与TFTP
    tomcat热部署
    开发心得体会
  • 原文地址:https://www.cnblogs.com/yangweilihui/p/5985612.html
Copyright © 2011-2022 走看看