符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
14.3.01
创新互联坚信:善待客户,将会成为终身客户。我们能坚持多年,是因为我们一直可值得信赖。我们从不忽悠初访客户,我们用心做好本职工作,不忘初心,方得始终。10余年网站建设经验创新互联是成都老牌网站营销服务商,为您提供成都网站制作、网站设计、网站设计、H5页面制作、网站制作、品牌网站设计、微信小程序开发服务,给众多知名企业提供过好品质的建站服务。数据存储(持久化)
五种:(外存)
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”,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());
获得
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。