数据存储与访问常用方式: 文件 SharedPreferences(偏好参数设置) SQLite数据库 内容提供者(Content provider) 网络 Activity(Context) Context.getCacheDir()方法用于获取/data/data/package name/cache目录 Context.getFilesDir()方法用于获取/data/data/package name/files目录 Activity(Context)提供了openFileOutput(filename,mode)方法用于把数据输出到文件中; 第一个参数用于指定文件名称,不能包...
[ 查看全文 ]