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();