因为自己的项目是java编写的,所以不需要kotlin,download中是以前版本的jar文件,sample则是使用示例,这些都用不到,所以可以直接删除。如果你还不了解LitePal的使用,传送门
打开Android studio 选择File - > new -> import module 选择下载下来解压的文件夹,勾选需要的依赖,因为这里我已经添加完了,忽略。
修改sdk编译版本,以及删除kotlin的相关依赖,直到项目同步完成。
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE},
0);
findViewById(R.id.jm).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Student student = new Student("onex", "12", "man");
student.save();
Student student1 = new Student("onex1", "12", "man");
student1.save();
Student student2 = new Student("onex2", "12", "man");
student2.save();
Student student3 = new Student("jaima", "12", "man");
student3.save();
Toast.makeText(MainActivity.this, "成功", Toast.LENGTH_SHORT).show();
}
});
然后去文件管理中找到相应的.db文件,可以看看是否成功!
从下载下来的源码中可以看出,LitePal的核心代码在core这个Module中,所以在该Module中集成SQLCipher,打开core中的build.gradle,然后添加
api 'net.zetetic:android-database-sqlcipher:4.0.1@aar'
当然可以去官网 https://github.com/sqlcipher/android-database-sqlcipher
使用查看是否有新的版本,同步后,注意这个地方,sqlcipher使用非常方便,因为它的使用和Android中的SQLiteDatabase的使用是完全一样,只需要替换掉LitePal源码中 android.database.Cursor 和android.database.sqlite.SQLiteDatabase的引用替换成 SQLCipherjar包下的对应类,net.sqlcipher.Cursor 和 net.sqlcipher.database.SQLiteDatabase
SQLiteDatabase.loadLibs(this);
https://github.com/OnexZgj/SqlcipherMergeLitepal
再来看看如何将加密的数据库文件解密进行查看
搜索了好多的文章,但是还是具体的解决方案,于是根据自己的理解,加同事的指点,查看LitePal的打开加密数据库的过程,于是得到如下解密数据库方案:
https://download.csdn.net/download/qq_15988951/11029385