- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在为如何使用 SQLCipher 加密/解密数据库而苦苦挣扎。
在我的这段代码中,我应该从哪里开始。以及如何开始。
如果可能,请编辑此代码。
我点击了此链接,但不知道如何操作。 http://sqlcipher.net/sqlcipher-api/#key
我的数据库文件:-
import net.sqlcipher.database.SQLiteDatabase;
import net.sqlcipher.database.SQLiteOpenHelper;
import android.content.Context;
import android.util.Log;
public class DatabaseClass extends SQLiteOpenHelper
{
/**
* Constants
*/
public final static String DATABASE_NAME ="mycipherdatabase.db";
public final static String NAME ="name";
public final static String ADDRESS ="address";
public final static String CITY ="city";
public static String pass = "1234";
public DatabaseClass(Context context) {
super(context, DATABASE_NAME, null, 1);
}
/**
* called once
*/
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL( "CREATE TABLE mylistdata(_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT, address TEXT,city TEXT);");
Log.v("inside", "oncreate");
}
/**
* called when we upgrade(change)the version number of database
* onCreate also called after changing the version
*/
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP Table mylistdata");
onCreate(db);
}
}
使用此数据库的其他 Activity :-
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
SQLiteDatabase.loadLibs(this);
File file = getDatabasePath(DatabaseClass.DATABASE_NAME);
file.mkdir();
file.delete();
sqldb = SQLiteDatabase.openOrCreateDatabase(file,key, null);
db = new DatabaseClass(this);
etname = (EditText)findViewById(R.id.name);
etadd = (EditText)findViewById(R.id.add);
etcity = (EditText)findViewById(R.id.city);
result = (ListView)findViewById(R.id.mylist);
}
/**
*insert data in to database
*/
public void saveData(View v) {
ContentValues insertData = new ContentValues();
insertData.put(DatabaseClass.NAME, etname.getText().toString());
insertData.put(DatabaseClass.ADDRESS, etadd.getText().toString());
insertData.put(DatabaseClass.CITY, etcity.getText().toString());
db.getWritableDatabase(key).insert("mylistdata", DatabaseClass.NAME , insertData);
db.close();
resetEditText();
Toast.makeText(this,"Data saved", Toast.LENGTH_SHORT).show();
}
最佳答案
嗯,代码有很多问题,我认为你必须更好地了解 android 中的 SQLite 结构,从技术上讲,Android SQLite 和 SQLCipher 看起来完全一样(密码除外)。所以如果你写一个标准的 SQLite 应用程序,它可以很容易地更改为 SQLCipher,
我建议你阅读这篇关于 android 中 SQLite 的精彩文章,
http://www.vogella.com/articles/AndroidSQLite/article.html
提示:使用SQLiteOpenHelper时无需调用openOrCreateDatabase,调用 getWritableDatabase 就可以完成这项工作,而且你必须有一个 SQLiteDatabase 对象,它取自 getWritableDatabase 方法,调用 getWritableDatabase 每次都想插入一条记录是不对的。
这些部分将被删除,
// in onCreate method
File file = getDatabasePath(DatabaseClass.DATABASE_NAME);
file.mkdir();
file.delete();
sqldb = SQLiteDatabase.openOrCreateDatabase(file,key, null);
db = new DatabaseClass(this);
// in saveData method
db.getWritableDatabase(key).insert("mylistdata", DatabaseClass.NAME , insertData);
相反,你必须做这样的事情
// in onCreate method
try{
sqldb = new DatabaseClass(this).getWritableDatabase(key);
}catch(Throwable e){
// error occurred
}
// in insert action
try{
sqldb.insert("tablename", null, contentValues);
}catch(Throwable e){
// error occurred
}
这样您还可以查看是否发生错误,请记住,不要在流行语上使用 Exception 类,只能使用 Throwable!
此外,我不建议在每次插入操作时都关闭连接,最好在更高级别进行处理
关于android - 如何在 SQLCipher 中加密/解密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14582517/
我是一名优秀的程序员,十分优秀!