在哪里放置在一个Android应用程序
我在移动设备上直接开发源码文件,我有一些问题,你希望能帮助我使用一个数据库,澄清有关发展:在哪里放置在一个Android应用程序
我的应用程序是意味着使用SQLite数据库(只读模式),所以我想 知道我应该在电脑上创建.sqlite文件的位置,在 命令应用程序读取,甚至直接。
后来,应用程序应该从 集中式服务器下载数据库文件。因此,我们的想法是继续将该文件放在 的相同位置,其中一个应用程序一定会知道,并且可以在尝试使用它之前检查它是否存在 。
谢谢!
您需要将SQLite数据库打包为应用程序中的资源(例如res/raw)或资产。但是,您将无法直接使用打包的SQLite数据库。您需要将其复制到Android预计应用程序的数据库文件所在的位置,然后从那里使用它。执行此操作的最佳方法是使用Context.getDatabasePath(String)
(传递数据库文件的名称)来确定文件路径。这也是您应该放置应用程序在运行时下载的数据库文件的位置。
您需要使用下面的代码将数据库文件复制到你的资产文件夹,然后将其写入内存访问的应用程序:
public class DataBaseHelper extends SQLiteOpenHelper{
private static final String TAG = "DataBaseHelper";
//The Android's default system path of your application database.
private static String DB_PATH = "/data/data/" + Constants.package_name + "/databases/";
private static String DB_NAME = "YourDatabaseName.db";
public SQLiteDatabase myDataBase;
private final Context myContext;
/**
* 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.getWritableDatabase();
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_READWRITE);
}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[2048];
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_READWRITE);
}
@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) {
}
希望这有助于。
在你的DataBaseHelper类中,你应该使用'myContext.getDatabasePath(“YourDatabaseName”)'而不是对'DB_PATH'进行硬编码。 – 2012-04-09 14:15:56
我在生产应用程序中有类似于此的代码一段时间,虽然它似乎大部分时间工作,但我怀疑在复制过程中,数据库在这里和那里几乎被损坏或更改。我注意到缺少列和损坏的表索引。 – 2012-04-09 14:17:44
非常感谢代码,我会尝试做一些修改。 – giorgiline 2012-04-10 11:52:45
我把我的初始数据库放在'assets'目录下,然后将它复制到用户可访问的路径上 - 比如外部内存(sdcard等)。我没有用这种方式:)任何麻烦
如果要插入数据,以及宁愿只是获取值 可以使应用程序
将始终具有路径数据库里面我建议
像
/数据/数据/ your_project_name /数据库/ yourdatabase_name
http://www.anotherandroidblog.com/2010/08/04/android-database-tutorial/
这是非常好的教程,谢谢你让我知道。 – giorgiline 2012-04-10 11:51:55
对于路径,应该使用'your_project_package'(在清单中声明),而不是'your_project_name'。无论如何,确定路径的最好方法是使用'context“。getDatabasePath( “yourdatabase_name”)'。 – 2012-04-10 14:08:57
感谢您的回答。现在我已经清楚它是如何完成的。 – giorgiline 2012-04-10 11:51:13