标签: android
我想设置我将在我的应用上使用的数据库文件的位置。 我想定义这个文件将在我在磁盘上创建的某个文件夹而不是默认位置
怎么做?
答案 0 :(得分:1)
使用SQLiteDatabase.openOrCreateDatabase(new File(context.getFilesDir().getPath() + "database.db3"), null),而新File()中的String是数据库的路径。但是强烈建议将它存储在指定的路径中,而不是某处
SQLiteDatabase.openOrCreateDatabase(new File(context.getFilesDir().getPath() + "database.db3"), null)