飛天

快乐的生活......

 

SharedPreferences 简单用法

SharedPreferences 相当于Ini文件功能。是以xml文件形式保存。
 SharedPreferences android.content.ContextWrapper.getSharedPreferences(String name, int mode)



public SharedPreferences getSharedPreferences (String name, int mode) 
Since: API Level 1 
Retrieve and hold the contents of the preferences file 'name', returning a SharedPreferences through which you can retrieve and modify its values. Only one instance of the SharedPreferences object is returned to any callers for the same name, meaning they will see each other's edits as soon as they are made.

Parameters
name  Desired preferences file. If a preferences file by this name does not exist, it will be created when you retrieve an editor (SharedPreferences.edit()) and then commit changes (Editor.commit()). 
mode  Operating mode. Use 0 or MODE_PRIVATE for the default operation, MODE_WORLD_READABLE and MODE_WORLD_WRITEABLE to control permissions. The bit MODE_MULTI_PROCESS can also be used if multiple processes are mutating the same SharedPreferences file. MODE_MULTI_PROCESS is always on in apps targetting Gingerbread (Android 2.3) and below, and off by default in later versions. 

Returns
Returns the single SharedPreferences instance that can be used to retrieve and modify the preference values.

一、读取内容

   SharedPreferences preferences = getSharedPreferences("PCINFO", MODE_APPEND);
String strAddr = preferences.getString("PCADDR", "10.0.2.2");
String strPort =  preferences.getString("PCPORT","6699");

二、写入数据

SharedPreferences preference = getSharedPreferences("PCINFO", MODE_APPEND ) ;
Editor editor = preference.edit();
editor.putString("PCADDR", strAddr);
editor.putString("PCPORT", strPort);
editor.commit();

posted on 2011-11-17 14:01 飛天 阅读(638) 评论(0)  编辑 收藏 引用 所属分类: Android


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


导航

统计

常用链接

留言簿(2)

随笔分类

随笔档案

文章分类

文章档案

Blogs

搜索

最新评论

阅读排行榜

评论排行榜