-
-
Save viktor1190/4c51debf4e58d80ffbc238721b4655c0 to your computer and use it in GitHub Desktop.
Copy sqlite database from assets dir - Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javatarts.basketballgm.data; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; | |
import android.content.Context; | |
import android.database.sqlite.SQLiteDatabase; | |
public class AssetDatabaseOpenHelper { | |
private static final String DB_NAME = "asset.db"; | |
private Context context; | |
public AssetDatabaseOpenHelper(Context context) { | |
this.context = context; | |
} | |
public SQLiteDatabase openDatabase() { | |
File dbFile = context.getDatabasePath(DB_NAME); | |
if (!dbFile.exists()) { | |
try { | |
copyDatabase(dbFile); | |
} catch (IOException e) { | |
throw new RuntimeException("Error creating source database", e); | |
} | |
} | |
return SQLiteDatabase.openDatabase(dbFile.getPath(), null, SQLiteDatabase.OPEN_READONLY); | |
} | |
private void copyDatabase(File dbFile) throws IOException { | |
InputStream is = context.getAssets().open(DB_NAME); | |
OutputStream os = new FileOutputStream(dbFile); | |
byte[] buffer = new byte[1024]; | |
while (is.read(buffer) > 0) { | |
os.write(buffer); | |
} | |
os.flush(); | |
os.close(); | |
is.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment