Android 文件保存到手机根目录(不需要自己写路径,四种文件操作模式)

数据存储与访问

 
很多时候我们开发的软件需要对处理后的数据进行存储,以供再次访问,Android为数据存储提供了如下几种方式:
 
·文件
·SharedPreferences(参数)
·SQLite 数据库
·内容提供者(Content provider)
·网络
 
下面演示文件的存储与读取:

 

注意:




 细节:文件的四种操作模式
activity_main.xml
[ html]  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    android:orientation="vertical" >  
  
   
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="@string/text1" />  
  
   
        android:id="@+id/filename"  
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="abc.txt" />  
  
   
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="文件内容" />  
  
   
        android:id="@+id/filecontent"  
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:minLines="3" />  
  
   

转载于:https://www.cnblogs.com/denghaicheng/p/4393666.html

你可能感兴趣的:(移动开发,java,数据库)