-
安卓--数据--SQLiteDateBase--执行SQL原生语句查看全部
-
安卓--数据--SQLiteDateBase--创建数据库查看全部
-
安卓--SQLite--使用类--SQLieteDataBase--常用方法查看全部
-
安卓--SQLite--使用类--SQLieteDataBase查看全部
-
安卓--SQLite--使用类查看全部
-
安卓--数据--SQlite--使用注意事项查看全部
-
安卓--数据--SQlite--使用注意事项查看全部
-
安卓--数据--SQlite--动态数据类型查看全部
-
安卓--数据--SQlite--数据类型查看全部
-
安卓--数据--SQlite--事务特性查看全部
-
安卓--数据--SQlite--特点查看全部
-
SQLiteDataBase常用方法查看全部
-
SQLiteDatabase的作用查看全部
-
使用SharedPreferences存储数据: SharePreferences pref=getSharedPreferences("myPref",MODE_PRIVATE); Edit editor=pref.edit(); editor.putString/Int/Long/Boolean("key",value); editor.commit(); editor.remove("key"); editor.commit(); 附:System.currentTimeMillis()//获取当前系统时间。查看全部
-
四种存储方式: 1.SharedPreferences 1)一种轻型的数据存储方式 2)本质:基于XML文件存储key-value键值对数据 3)常用来存储一些简单的配置信息 2.SQLite 3.Content Provider 4.File 实现SharedPreferences存储步骤: (1)获取SharedPreferences对象 (2)获取SharedPreferences.Editor对象(因为SharedPreferencesd对象不能直接进行存储,存储实现通过Editor对象实现) (3)通过Editor接口的putXxxx方法保存 (4)通过Editor.commit提交 ps:Android默认的XML解析器为DOM查看全部
举报
0/150
提交
取消