保存文件到内部存储器

作者:追风剑情 发布于:2015-8-12 21:39 分类:Android

视图

  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.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.io.InputStreamReader;
  7. import java.io.OutputStreamWriter;
  8.  
  9. import android.app.Activity;
  10. import android.os.Bundle;
  11. import android.util.Log;
  12. import android.view.Menu;
  13. import android.view.MenuItem;
  14. import android.view.View;
  15. import android.widget.EditText;
  16. import android.widget.Toast;
  17.  
  18. public class FilesActivity 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. //MODE_WORLD_READABLE : 表示此文件可被其他所有应用程序读取
  33. //MODE_PRIVATE : 文件只能被创建它的应用程序访问
  34. //MODE_APPEND : 附加到现有文件
  35. //MODE_WORLD_WRITEABLE : 文件对于其他所有应用程序来说都是可写的
  36. FileOutputStream fOut = openFileOutput("textfile.txt", MODE_WORLD_READABLE);
  37. OutputStreamWriter osw = new OutputStreamWriter(fOut);
  38. osw.write(str);
  39. osw.flush();//保证所有字节都写入文件
  40. osw.close();//关闭文件
  41. Toast.makeText(getBaseContext(), "File saved successfully", Toast.LENGTH_SHORT).show();
  42. textBox.setText("");
  43. }catch(IOException e){
  44. Log.e("AndroidTest", e.getLocalizedMessage());
  45. }
  46. }
  47. public void onClickLoad(View view)
  48. {
  49. try {
  50. FileInputStream fIn = openFileInput("textfile.txt");
  51. InputStreamReader isr = new InputStreamReader(fIn);
  52. char[] inputBuffer = new char[READ_BLOCK_SIZE];
  53. String s = "";
  54. int charRead;
  55. while((charRead = isr.read(inputBuffer))>0){
  56. String readString = String.copyValueOf(inputBuffer, 0, charRead);
  57. s += readString;
  58. inputBuffer = new char[READ_BLOCK_SIZE];
  59. }
  60. textBox.setText(s);
  61. Toast.makeText(getBaseContext(), "File loaded successfully!", Toast.LENGTH_SHORT).show();
  62. } catch (IOException e) {
  63. Log.e("AndroidTest", e.getLocalizedMessage());
  64. }
  65. }
  66. }

运行效果

1111.png22222.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号