保存文件到外部存储器(SD卡)

作者:追风剑情 发布于:2015-8-13 20:58 分类:Android

在AndroidManifest.xml中添加权限

  1. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <TextView
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="Please enter some text" />
  12. <EditText
  13. android:id="@+id/txtText1"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"/>
  16. <Button
  17. android:id="@+id/btnSave"
  18. android:text="Save"
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:onClick="onClickSave" />
  22.  
  23. <Button
  24. android:id="@+id/btnLoad"
  25. android:text="Load"
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:onClick="onClickLoad" />
  29. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.io.InputStreamReader;
  8. import java.io.OutputStreamWriter;
  9.  
  10. import android.app.Activity;
  11. import android.os.Bundle;
  12. import android.os.Environment;
  13. import android.util.Log;
  14. import android.view.View;
  15. import android.widget.EditText;
  16. import android.widget.Toast;
  17.  
  18. public class FilesActivity1 extends Activity {
  19.  
  20. EditText textBox;
  21. static final int READ_BLOCK_SIZE = 100;
  22. @Override
  23. protected void onCreate(Bundle savedInstanceState) {
  24. super.onCreate(savedInstanceState);
  25. setContentView(R.layout.activity_files);
  26. textBox = (EditText)findViewById(R.id.txtText1);
  27. }
  28. public void onClickSave(View view)
  29. {
  30. String str = textBox.getText().toString();
  31. try {
  32. //---SD Card Storage---
  33. File sdCard = Environment.getExternalStorageDirectory();//获取外部存储器的完整路径
  34. File directory = new File(sdCard.getAbsolutePath() + "/MyFiles");
  35. directory.mkdirs();
  36. File file = new File(directory, "textfile.txt");
  37. FileOutputStream fOut = new FileOutputStream(file);
  38. OutputStreamWriter osw = new OutputStreamWriter(fOut);
  39. osw.write(str);
  40. osw.flush();
  41. osw.close();
  42. Toast.makeText(getBaseContext(), "File saved successfully!", Toast.LENGTH_SHORT).show();
  43. textBox.setText("");
  44. } catch (IOException e) {
  45. Log.d("AndroidTest", e.getLocalizedMessage());
  46. }
  47. }
  48. public void onClickLoad(View view)
  49. {
  50. try {
  51. File sdCard = Environment.getExternalStorageDirectory();
  52. File directory = new File(sdCard.getAbsolutePath() + "/MyFiles");
  53. File file = new File(directory, "textfile.txt");
  54. FileInputStream fIn = new FileInputStream(file);
  55. InputStreamReader isr = new InputStreamReader(fIn);
  56. char[] inputBuffer = new char[READ_BLOCK_SIZE];
  57. String s = "";
  58. int charRead;
  59. while((charRead = isr.read(inputBuffer))>0){
  60. String readString = String.copyValueOf(inputBuffer, 0, charRead);
  61. s += readString;
  62. inputBuffer = new char[READ_BLOCK_SIZE];
  63. }
  64. textBox.setText(s);
  65. Toast.makeText(getBaseContext(), "File loaded successfully!", Toast.LENGTH_SHORT).show();
  66. } catch (IOException e) {
  67. Log.d("AndroidTest", e.getLocalizedMessage());
  68. }
  69. }
  70. }

运行效果

sssssssssss.pnglllllllll.png

ddddddddddd.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号