android 读写配置文件

基本上我们所有的数据均放在 /data/data/com.xxx.xxx目录下:

shared_prefs/ 放置简单的配置信息文件,文件格式为xxx.xml;

databases/ 放置数据库文件,文件名自己定义。

//SharedPreferences 文件读写

//读文件
SharedPreferences settings = this.getContext().getSharedPreferences(
				this.getClass().getName(), 0);
		string str = settings.getString("password", "");



//写文件
SharedPreferences settings = this.getContext().getSharedPreferences(
				this.getClass().getName(), 0);
		Editor editor = settings.edit();
		editor.putString("password", password);
		editor.commit();
		
//这里的 this.getClass().getName()是获得类名称。
//getSharedPreferences(String name, int mode);
//private static String strFile = "/data/data/com.entesi.wells/files/wells.properties";

//读文件
Properties properties = new Properties();
try {
	File fil=new File(strFile);
	if(!fil.exists())
	{
		fil.createNewFile();
		return false;
	}
	else
	{
		FileInputStream s = new FileInputStream(strFile);
		properties.load(s);
	}
} catch (Exception e) 
{
	e.printStackTrace();
	return false;
}

if ((String)properties.get("waittime")!=null)
	this.nWaitTime = Integer.parseInt((String)properties.get("waittime"));

//写文件
try {  
		FileOutputStream s = new FileOutputStream(strFile, false);  
		Properties properties = new Properties();
		
		File fil=new File(strFile);
		if(!fil.exists()){
			fil.createNewFile();
		}
		properties.setProperty("waittime", nWaitTime+"");
		
		properties.store(s, null); 
	} catch (Exception e){  
		e.printStackTrace();  
	}