gpt4 book ai didi

android - 无法从 Assets 文件夹 [Android] 打开数据库

转载 作者:行者123 更新时间:2023-11-29 00:29:41 25 4
gpt4 key购买 nike

抱歉这么蹩脚的问题,我4个小时都解决不了。我正在尝试从我可以与 SQLiteOpenHelper 一起使用的/assets 文件夹中复制数据库,但是当我尝试打开 InputStream 时,它给了我错误:

 E/Trace: error opening trace file: No such file or directory (2)

代码:

public static final String DATABASE_PATH =  "/data/data/com.mycomp.myapp/databases/";
public static final String DATABASE_NAME = "database.db";

@Override
protected void onCreate(Bundle savedInstanceState) {
try {
copyDatabase(getApplicationContext());
} catch (IOException e) {
e.printStackTrace();
Log.d(TAG, "blad" + e.toString());
}
}

private void copyDatabase(Context context) throws IOException {
String outfilename = DATABASE_PATH + DATABASE_NAME;

InputStream myinput = context.getAssets().open("database.db");

OutputStream myoutput = new FileOutputStream(outfilename);

byte[] buffer = new byte[1024];
int length;
while ((length = myinput.read(buffer)) > 0) {
myoutput.write(buffer, 0, length);
}

myoutput.flush();
myoutput.close();
myinput.close();
}

最佳答案

你能试试这个代码然后告诉我结果吗?请务必检查所有文件名。

@Override
protected void onCreate(Bundle savedInstanceState) {
//.......

DatabaseHelper dbHelper = new DatabaseHelper(this);
dbHelper.createDatabase();

dbHelper.openDatabase();
// do stuff
Cursor data =dbHelper.Sample_use_of_helper();
dbHelper.close();
}


class DatabaseHelper extends SQLiteOpenHelper {

private static String DB_PATH = "/data/data/com.mycomp.myapp/databases/";
private static String DB_NAME = "database.db";
private SQLiteDatabase myDataBase;
private final Context myContext;

public DatabaseHelper (Context context) {
super(context, DB_NAME, null, 1);
this.myContext = context;
}

public void crateDatabase() throws IOException {
boolean vtVarMi = isDatabaseExist();

if (!vtVarMi) {
this.getReadableDatabase();

try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}

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();
}

private boolean isDatabaseExist() {
SQLiteDatabase kontrol = null;

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

} catch (SQLiteException e) {
kontrol = null;
}

if (kontrol != null) {
kontrol.close();
}
return kontrol != null ? true : false;
}

public void openDataBase() throws SQLException {

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

}

public Cursor Sample_use_of_helper() {

return myDataBase.query("TABLE_NAME", null, null, null, null, null, null);
}

@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) {
}
}

关于android - 无法从 Assets 文件夹 [Android] 打开数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16640604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com