14.3.01
创新互联是一家集网站建设,阿瓦提企业网站建设,阿瓦提品牌网站建设,网站定制,阿瓦提网站建设报价,网络营销,网络优化,阿瓦提网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。
数据存储(持久化)
五种:(外存)
1、Shared Preferences
Store private primitive data in key-value pairs.
参数共享(保存关键参数:下载、登陆等)
2、Internal Storage
Store private data on the device memory.
内部存储
3、External Storage
Store public data on the shared external storage.
外部存储(保存文件、安装包)
4、SQLite Databases
Store structured data in a private database.
数据库存储(外存)
5、Network Connection
Store data on the web with your own network server.
网络存储
1、sharePreferences
应用场景:应用程序有少量的数据需要保存(设置参数的保存)
例子:按钮点击保存
//得到参数共享类型的对象
SharePreferences preference=getPreferences(0);//0:默认值
//编辑器类型的对象
Editor edit=Preference.edit();
//想编辑器对象添加数据
Edit.putBoolean(“name”);
//提交
Commit();
获取数据
getBoolean(“name”);//SS:默认值
SharedPreferences preferences = getPreferences(0);
String name = preferences.getString("name", "Lily");
}
保存位置
Data/data/包名“xibo<span style=\"\\"font-size:14px;font-family:'times\">”,0);//xibo保存的文件名
2、InternalStorage
保存位置:
Data/data/包名/files/aa.txt"
保存
FileOutputStream openFileOutput =null;
openFileOutput = openFileOutput("aa.txt",MODE_PRIVATE);
openFileOutput.write(str.getBytes());
e.printStackTrace();
e.printStackTrace();
if(openFileOutput!=null){
openFileOutput.close();
e.printStackTrace();
}
}
读取
FileInputStream
FileInputStream fis=null;
try {
fis=new FileInputStream("data/data/com.example.day_example/files/aa.txt");
byte[] buffer=newbyte[1024];
bab.append(buffer, 0, len);
String str=new String(bab.toByteArray(), 0, bab.length());
Log.e("getData------>", ""+bab.length());
e.printStackTrace();
e.printStackTrace();
if(fis!=null){
fis.close();
e.printStackTrace();
}
}
读写模式:
MODE_PRIVATE私有模式:只有当前应用才能对这个文件进行读写操作,不会进 行叠加,每次都清空
MODE_APPEND添加模式:只有当前应用才能对这个文件进行读写操作,对数据 追加
MODE_WORLD_READABLE其他应用可读
MODE_WORLD_WRITEABLE其他应用可写
3、外部读取
查找sd卡是否可用
Environment..MEDIA_MOUNTED.equals(Environment.getExternalStorageState());
获得
网站栏目:数据存储(持久化)
文章来源:https://www.cdcxhl.com/article42/iigdhc.html
成都网站建设公司_创新互联,为您提供服务器托管、外贸建站、网站内链、网站制作、动态网站、响应式网站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联