0

我正在制作一个问答游戏,我想使用 SQLite 数据库来存储 300 多个问题并随机选择其中一个。我做了一项研究,我知道如何创建和更新表,如何在 Android 应用程序中添加、修改和删除行,但我找不到将我的应用程序连接到已经完成的数据库(存储的只读数据库)的方法在资源(资产)文件夹中)。

请你帮助我好吗?

4

2 回答 2

0

您应该将您的数据库文件从资产文件夹复制到您安装的应用程序。
例如:

public class DatabaseOpenHelper extends SQLiteOpenHelper {

private final static String DB_NAME = "YourDatabaseFile.sqlite";
private static String DB_PATH = "/data/data/%s/databases/";
private final String ERROR_TAG = "error";
private final static int DB_VERSION = 1;
private final int BUFFER_SIZE = 8 * 1024;
private SQLiteDatabase databaseHandle;

private final Context context;

public DatabaseOpenHelper(Context context) {
    super(context, DB_NAME, null, DB_VERSION);

    this.context = context;
    DB_PATH = String.format(DB_PATH, context.getPackageName());
}

public SQLiteDatabase openDataBase() {
    try {
        String databasePath = DB_PATH + DB_NAME;
        if (databaseHandle == null) {
            createDataBase();
            databaseHandle = SQLiteDatabase.openDatabase(databasePath, null, SQLiteDatabase.OPEN_READWRITE);
        }
    }
    catch (SQLiteException e) {
        throw new IllegalStateException(context.getResources().getString(R.string.err_opening_db), e);
    }
    return databaseHandle;
}

private boolean createDataBase() {
    try {
        if (!isDataBase()) {
            this.getReadableDatabase();
            copyDataBase();
            return true;
        }
    }
    catch (SQLiteException e) {
        throw new IllegalStateException(context.getResources().getString(R.string.err_opening_db), e);
    }
    catch (IOException e){
        Log.e(ERROR_TAG, context.getResources().getString(R.string.err_close_stream), e);
    }

    return false;
}

public boolean isDataBase() {
    SQLiteDatabase verifiableDatabase = null;
    try {
        String databasePath = DB_PATH + DB_NAME;
        verifiableDatabase = SQLiteDatabase.openDatabase(databasePath, null, SQLiteDatabase.OPEN_READONLY);
        verifiableDatabase.close();
    }
    catch (SQLiteException e) {
        Log.e(ERROR_TAG, context.getResources().getString(R.string.err_opening_db), e);
        return false;
    }

    return true;
}

private void copyDataBase() throws IOException {
    InputStream externalDbStream = null;
    OutputStream localDbStream = null;
    try {
        externalDbStream = context.getAssets().open(DB_NAME);
        localDbStream = new FileOutputStream(DB_PATH+DB_NAME);

        byte[] buffer = new byte[BUFFER_SIZE];
        int bytesRead;

        while ((bytesRead = externalDbStream.read(buffer)) > 0) {
            localDbStream.write(buffer, 0, bytesRead);
        }
    }
    catch (IOException e) {
        throw new IllegalStateException(context.getResources().getString(R.string.err_copying_db), e);
    }
    finally {
        if (localDbStream != null)
            localDbStream.close();
        if (externalDbStream != null)
            externalDbStream.close();
    }
}

@Override
public void close() {
    databaseHandle.close();
}

@Override
public void onCreate(SQLiteDatabase db) {
}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}}

使用:
DatabaseOpenHelper dbHelper = new DatabaseOpenHelper(context);
SQLiteDatabase database = dbHelper.openDataBase();

于 2013-07-20T22:12:18.197 回答
0

这是一件非常复杂的事情,好吧不是很复杂,但是您必须做一些编程工作。无法直接从资产文件夹中读取数据库,您必须将其复制到内部存储或 sd 卡。在这里解释太多了,请阅读本教程,这是正确的起点:

http://zaman91.wordpress.com/2010/09/22/android-how-to-use-own-sqlite-database/

于 2013-07-20T20:59:21.383 回答