Android如何导入数据库文件 (android 导入数据库文件)

在开发Android应用程序时,经常需要通过数据库来存储和管理数据。而在开发过程中,我们可以使用SQLite数据库来创建和管理数据库。而有时候我们需要导入一个已经存在的数据库文件进行使用,那么本文将会介绍如何在Android平台上导入一个已经存在的数据库文件。

1.我们需要将我们要导入的数据库文件拷贝到 Android 工程的 assets 目录下。如果没有 assets 目录,可以在 app 下新建一个名为 assets 的文件夹即可。

2.接下来,在我们的工程中创建 SQLiteOpenHelper 的一个子类,用于打开现有的数据库文件。这个类的大致代码如下所示:

public class MyDatabase extends SQLiteOpenHelper {

private static final String DATABASE_NAME = “mydatabase.db”;

private static final int DATABASE_VERSION = 1;

private final Context mContext;

public MyDatabase(Context context) {

super(context, DATABASE_NAME, null, DATABASE_VERSION);

mContext = context;

}

public void createDatabase() throws IOException {

boolean dbExist = checkDataBase();

if (!dbExist) {

this.getReadableDatabase();

try {

copyDataBase();

} catch (IOException e) {

throw new Error(“Error copying database.”);

}

}

}

private boolean checkDataBase() {

SQLiteDatabase checkDB = null;

try {

String dbPath = mContext.getDatabasePath(DATABASE_NAME).getPath();

checkDB = SQLiteDatabase.openDatabase(dbPath, null, SQLiteDatabase.OPEN_READON);

} catch (SQLiteException e) {

//database does not exist yet.

}

if (checkDB != null) {

checkDB.close();

}

return checkDB != null ? true : false;

}

private void copyDataBase() throws IOException {

// Open your local db as the input stream

InputStream myInput = mContext.getAssets().open(DATABASE_NAME);

// Path to the just created empty db

String outFileName = mContext.getDatabasePath(DATABASE_NAME).getPath();

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

}

@Override

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

// do nothing

}

@Override

public void onCreate(SQLiteDatabase db) {

// do nothing

}

}

3.在我们的MnActivity中,实例化 MyDatabase 类,并且调用 createDatabase() 方法来拷贝并打开数据库。如下所示:

public class MnActivity extends AppCompatActivity {

private MyDatabase csvDatabase;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_mn);

csvDatabase = new MyDatabase(this);

try {

csvDatabase.createDatabase();

} catch (IOException e) {

e.printStackTrace();

}

}

}

4.导入成功后,我们可以使用 SQLiteDatabase 对象连接到数据库,以执行期望的操作。如下所示,我们可以读取导入的数据库中的数据,然后将其显示在 ListView 上:

private void loadFromDatabase() {

SQLiteDatabase db = csvDatabase.getReadableDatabase();

List dataList = new ArrayList();

String query = “SELECT * FROM mytable”;

Cursor cursor = db.rawQuery(query, null);

if (cursor.moveToFirst()) {

do {

String name = cursor.getString(1);

String eml = cursor.getString(2);

String phone = cursor.getString(3);

dataList.add(name + “, ” + eml + “, ” + phone);

} while (cursor.moveToNext());

cursor.close();

db.close();

ArrayAdapter adapter = new ArrayAdapter(this,

android.R.layout.simple_list_item_1, android.R.id.text1, dataList);

lstData.setAdapter(adapter);

}

}


数据运维技术 » Android如何导入数据库文件 (android 导入数据库文件)