1

我正在尝试从 assets 文件夹中读取现有的 sqlite 数据库!但我收到此错误:

java.lang.runtimeexception unable to instantiate activity componentinfo

请帮帮我!

这是我的 DataBaseHelper 类:

public class DataBaseHelper extends SQLiteOpenHelper {

// The Android's default system path of your application database.
private static String DB_PATH = "/data/data/com.example.sqltest/databases/";

private static String DB_NAME = "test.sqlite";

private SQLiteDatabase myDataBase;

private final Context myContext;

/**`enter code here`
 * Constructor Takes and keeps a reference of the passed context in order to
 * access to the application assets and resources.
 * 
 * @param context
 */
public DataBaseHelper(Context context) {
        super(context, DB_NAME, null, 1);
    this.myContext = context;
}

/**
 * Creates a empty database on the system and rewrites it with your own
 * database.
 * */
public void createDataBase() throws IOException {
        boolean dbExist = checkDataBase();
        if (dbExist) {
        // do nothing - database already exist
        } else {

    // By calling this method and empty database will be created into
    // the default system path
    // of your application so we are gonna be able to overwrite that
    // database with our database.
    this.getReadableDatabase();

    this.close();

    try {

        copyDataBase();

    } catch (IOException e) {

        throw new Error("Error copying database");

    }
}

}

/**
 * Check if the database already exist to avoid re-copying the file each
 * time you open the application.
 * 
 * @return true if it exists, false if it doesn't
 */
private boolean checkDataBase() {
        SQLiteDatabase checkDB = null;

    try {
        String myPath = DB_PATH + DB_NAME;
    checkDB = SQLiteDatabase.openDatabase(myPath, null,
                SQLiteDatabase.OPEN_READONLY);

    } catch (SQLiteException e) {

        // database does't exist yet.

    }

    if (checkDB != null) {

        checkDB.close();

    }

    return checkDB != null ? true : false;
}

/**
 * Copies your database from your local assets-folder to the just created
 * empty database in the system folder, from where it can be accessed and
 * handled. This is done by transfering bytestream.
 * */
private void copyDataBase() throws IOException {

    // Open your local db as the input stream
    InputStream myInput = myContext.getAssets().open(DB_NAME);

    // Path to the just created empty db
    String outFileName = DB_PATH + DB_NAME;

    // Open the empty db as the output stream
    OutputStream myOutput = new FileOutputStream(outFileName);

    // transfer bytes from the inputfile to the outputfile
    byte[] buffer = new byte[1024];
    int length;
    while ((length = myInput.read(buffer)) > 0) {
    myOutput.write(buffer, 0, length);
}

// Close the streams
myOutput.flush();
myOutput.close();
myInput.close();

}

public void openDataBase() throws SQLException {

    // Open the database
    String myPath = DB_PATH + DB_NAME;
    myDataBase = SQLiteDatabase.openDatabase(myPath, null,
    SQLiteDatabase.OPEN_READONLY);

}

@Override
public synchronized void close() {

    if (myDataBase != null)
        myDataBase.close();

    super.close();

}

@Override
public void onCreate(SQLiteDatabase db) {

}

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

}

// Add your public helper methods to access and get content from the
// database.
// You could return cursors by doing "return myDataBase.query(....)" so it'd
// be easy
// to you to create adapters for your views.

}

这是 MainActivity 类:

public class MainActivity extends Activity {
DataBaseHelper myDbHelper;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public MainActivity(Context context) {

    myDbHelper = new DataBaseHelper(this);

    try {

        myDbHelper.createDataBase();

    } catch (IOException ioe) {

        throw new Error("Unable to create database");

    }

    try {

        myDbHelper.openDataBase();

    } catch (SQLException sqle) {

        throw sqle;

    }
}
}

谁能提供最简单的代码来显示我现有的 sqlite 数据库的数据?

4

1 回答 1

1

我想不出任何好的理由在constructor这个 Activity 子类中做任何事情(在你的情况下)。通常你从不直接构造一个活动,我们经常使用Intent,我猜这是你的代码的问题。onCreate()使用它而不是它的构造函数,并做你所有的正常静态设置——创建视图,将数据绑定到列表,数据库等等在 onCreate() 中。

Edit1
您可以轻松解决java.lang.runtimeexception unable to instantiate activity componentinfo,只需更改 MainActivity :

public class MainActivity extends Activity {
    DataBaseHelper myDbHelper;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        myDbHelper = new DataBaseHelper(this);
        try {
            myDbHelper.createDataBase();
        } catch (IOException ioe) {
            throw new Error("Unable to create database");
        }
        try {
            myDbHelper.openDataBase();
        } catch (SQLException sqle) {
            throw sqle;
        }
    }
}

编辑2
确保您放置test.sqlite在项目的资产文件夹中,并且项目的包名称是com.example.sqltest.
如果你的代码没有其他问题,它就可以工作了。这意味着你的数据库复制成功,可以使用了。现在你必须访问并从数据库中获取内容。注意课后的注释:

添加您的公共辅助方法以访问和从数据库中获取内容。您可以通过执行“return myDataBase.query(....)”来返回游标,这样您就可以轻松地为您的视图创建适配器。

如果你看到黑页,可能是因为你的布局是空的。你可以使用你的数据库为你的视图创建适配器,这样你的活动就不会是空的。

您可以在这些页面中查看有关SQLiteOpenHelper课程的更多详细信息:
Android SQLite 数据库和 ContentProvider - 教程
Android SQLite 数据库教程

于 2012-08-27T23:17:42.010 回答