1

これに関連するすべての質問をstackoverflowで確認しましたが、どれも役に立たないようです。私のプログラムは以前は完全に正常に実行されていましたが、AVD を削除し、再度実行すると、データベース フォルダーを作成しようとするとエラーが発生しました。

私はマニフェスト ファイルの読み取りと書き込みのアクセス許可を持っています。他に提供できるものはありますか?

AVDを再作成しただけなので、私のコードではないと思いますが、過去2週間は幸運だったかもしれません

public DataBaseHelper(Context context) 
{
    super(context, DB_NAME, null, 1);
    if(android.os.Build.VERSION.SDK_INT >= 4.2)
    {
       DB_PATH = context.getApplicationInfo().dataDir + "/databases/";         
    }
    else
    {

       DB_PATH = "/data/data/" + context.getPackageName() + "/databases/";
    }
    this.mContext = context;
}   

public void createDataBase() throws IOException
{
    //If database not exists copy it from the assets

copyDataBase();

mDataBase = this.getReadableDatabase();

    boolean mDataBaseExist = checkDataBase();
    if(!mDataBaseExist)
    {

       mDataBase = this.getReadableDatabase();
        this.close();
        try 
        {
            //Copy the database from assests
            copyDataBase();
            Log.e(TAG, "createDatabase database created");

        } 
        catch (IOException mIOException) 
        {
           throw new Error("ErrorCopyingDataBase");           
        }
    }
}
//Check that the database exists here: /data/data/your package/databases/Da Name
private boolean checkDataBase()
{
    File dbFile = new File(DB_PATH + DB_NAME);
    //Log.v("dbFile", dbFile + "   "+ dbFile.exists());

    this.getReadableDatabase();

    return dbFile.exists();
}

//Copy the database from assets
private void copyDataBase() throws IOException
{
    InputStream mInput = mContext.getAssets().open(DB_NAME);
    String outFileName = DB_PATH + DB_NAME;

    OutputStream mOutput = new FileOutputStream(outFileName);
    byte[] mBuffer = new byte[1024];
    int mLength;
    while ((mLength = mInput.read(mBuffer))>0)
    {
        mOutput.write(mBuffer, 0, mLength);
    }
    mOutput.flush();
    mOutput.close();
    mInput.close();
}

//Open the database, so we can query it
public boolean openDataBase() throws SQLException
{
    String mPath = DB_PATH + DB_NAME;
    //Log.v("mPath", mPath);
    mDataBase = SQLiteDatabase.openDatabase(mPath, null,         SQLiteDatabase.OPEN_READWRITE);
    //mDataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.NO_LOCALIZED_COLLATORS);
    return mDataBase != null;
}
4

0 に答える 0