Android下的数据存储与访问(1) --- 以文件的形式

Android下的数据存储与访问(1) --- 以文件的形式

	1.1 储存文件存放在手机内存中:

		// *** 储存数据到 /data/data/包名/files/jxn.txt文件中
		String data = "test";
		
		// /data/data/包名/files
		File filesDir = context.getFilesDir();
		
		File file = new File(filesDir, "jxn.txt");
		FileOutputStream fos = new FileOutputStream(file);
		fos.write(data.getBytes());	
		fos.flush();
		fos.close();
	
		// *** 从 /data/data/包名/files/jxn.txt文件中读取数据
		String data = "test";
		File filesDir = context.getFilesDir();
		File file = new File(filesDir, "jxn.txt");
		FileInputStream fis = new FileInputStream(file);
		BufferedReader reader = new BufferedReader(new InputStreamReader(fis));
		String text = reader.readLine();
		reader.close();
		
		补充:
			1,在Android上下文中openFileOutput()方法可以把数据写到/data/data/包名/files目录下
			2,在Android上下文中openFileInput()方法可以读取/data/data/包名/files目录下的文件
			3,具体的实现过程与在J2SE环境中保存数据到文件中是一样的。
			eg:
				// openFileOutput()方法的第一参数用于指定文件名称,不能包含路径分隔符“/” ,如果文件不存在,Android会自动创建
				// 存放路径:/data/data/包名/files/jxn.txt
				FileOutputStream outStream = context.openFileOutput("jxn.txt", Context.MODE_PRIVATE);

		SharedPreferences
			1,Android提供了一个SharedPreferences类,它是一个轻量级的存储类,特别适合用于保存软件配置参数。
			2,使用SharedPreferences保存数据,其最后是用xml文件存放数据,文件存放在/data/data/包名/shared_prefs目录下
			3,context.getSharedPreferences(name,mode)方法的第一个参数用于指定该文件的名称,名称不用带后缀,Android会自动地加上.xml后缀。

			// *** 储存数据到 /data/data/包名/shared_prefs/jxn.xml文件中
			
			// /data/data/包名/shared_prefs/jxn.xml
			SharedPreferences sp = context.getSharedPreferences("jxn", Context.MODE_PRIVATE);
			
			// 获得一个Editor对象
			Editor edit = sp.edit();
			
			// 存数据
			edit.putString("number", number);
			edit.putString("password", password);
			
			// 提交, 数据就保存到文件中了
			edit.commit();

			// *** 从 /data/data/包名/shared_prefs/jxn.xml文件中读取数据
			
			SharedPreferences sp = context.getSharedPreferences("jxn", Context.MODE_PRIVATE);
			
			String number = sp.getString("number", null);
			String password = sp.getString("password", null);
	
	1.2 储存文件存放在SD卡中:

		// *** 储存数据到 /mnt/sdcard/jxn.txt文件中

		// 判断当前的手机是否有sd卡;如果有SD卡,并且可以读写,则方法返回Environment.MEDIA_MOUNTED
		String state = Environment.getExternalStorageState();
		if(!Environment.MEDIA_MOUNTED.equals(state)) {
			return false;
		}
		
		String data = "test";
		
		// 一般为 /mnt/sdcard  但是不同手机的sd卡的目录可能不同
		File sdCardFile = Environment.getExternalStorageDirectory();
		
		File file = new File(sdCardFile, "jxn.txt");
		FileOutputStream fos = new FileOutputStream(file);	
		fos.write(data.getBytes());
		fos.flush();
		fos.close();

		// *** 从 /mnt/sdcard/jxn.txt文件中读取数据

		// 判断当前的手机是否有sd卡
		String state = Environment.getExternalStorageState();
		if(!Environment.MEDIA_MOUNTED.equals(state)) {
			return null;
		}

		File sdCardFile = Environment.getExternalStorageDirectory();
		File file = new File(sdCardFile, "jxn.txt");
		BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
		String text = br.readLine();
		br.close();

		<!-- 设置写入和读取sd卡的权限 -->
		<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
		<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
	
		
	

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。