- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一个预加载的数据库从我的 Assets 文件夹复制到我可以从中读取的某个位置,但是当我的代码尝试调用 InputStream 以获取数据库时,我收到 IOException来自 Assets 文件夹。
我一直在关注 Reign Design 上的教程以及来自 SO 的出色回答:https://stackoverflow.com/a/9109728/3699923 .我的问题与 Error copying SQLite DB from Asset folder 极为相似,但是他得到了一个找不到文件的错误,而我的是一个更通用的“错误复制文件”。
我还尝试从我的设备中删除该应用程序并再次测试以确保它与设备上已有的新文件无关。
我的 DBHelper 文件(这是一个摘录):
public class AppDataDBHelper extends SQLiteOpenHelper {
private static String TAG = "AppDataDBHelper"; // Tag just for the LogCat window
private static String DB_NAME ="appdata.db";// Database name
private static String DB_PATH = "";
private static String DB_TABLE = "Bonus_Data";
private static int DB_VERSION = 1;
private SQLiteDatabase mDataBase;
private final Context mContext;
public AppDataDBHelper(Context context) {
super(context, DB_NAME, null,DB_VERSION);
this.mContext = context;
DB_PATH = context.getAssets() + "/databases/";
// DB_PATH = context.getApplicationInfo().dataDir + "/databases/";
Log.e(TAG,DB_PATH + DB_NAME);
}
public void createDataBase() throws IOException
{
//If the database does not exist, copy it from the assets.
Log.e(TAG,"Entered createDatabase");
boolean mDataBaseExist = checkDataBase();
if(!mDataBaseExist)
{
this.getReadableDatabase();
this.close();
try
{
//Copy the database from assets
Log.e(TAG,"createDatabase passing to copyDatabase");
copyDataBase();
Log.e(TAG, "createDatabase database created");
}
catch (IOException mIOException)
{
throw new Error("ErrorCopyingDataBase");
}
}
}
//Check that the database exists here: /data/data/your package/databases/Da Name
private boolean checkDataBase()
{
Log.e(TAG,"entered checkDatabase");
File dbFile = new File(DB_PATH + DB_NAME);
//Log.v("dbFile", dbFile + " "+ dbFile.exists());
return dbFile.exists();
}
//Copy the database from assets
private void copyDataBase() throws IOException
{
Log.e(TAG,"entered copyDatabase");
close();
Log.e(TAG,"copyDatabase close");
InputStream mInput = mContext.getAssets().open(DB_NAME);
Log.e(TAG,"copyDatabase inputStream");
String outFileName = DB_PATH + DB_NAME;
Log.e(TAG,DB_PATH + " | " + DB_NAME);
OutputStream mOutput = new FileOutputStream(outFileName);
Log.e(TAG,"copyDatabase outputStream");
FileHelper.copyFile(mInput, mOutput);
getWritableDatabase().close();
}
来 self 相关 Activity 文件的调用:
// Handle the appData DB.
SQLiteDatabase appDB = null;
appDBHelper = new AppDataDBHelper(this);
try {
Log.e(TAG,"Calling createDataBase");
appDBHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to create database");
}
try {
Log.e(TAG,"Calling openDatabase");
appDBHelper.openDataBase();
} catch(SQLException sqle){
throw sqle;
}
我在 logcat 中看到的错误:
2019-02-02 22:40:29.103 603-603/net.tommyc.android.tourofhonor E/splashScreen: Going to Bonus List
2019-02-02 22:40:29.170 603-603/net.tommyc.android.tourofhonor D/ScrollView: initGoToTop
2019-02-02 22:40:29.195 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: android.content.res.AssetManager@9353a47/databases/appdata.db
2019-02-02 22:40:29.195 603-603/net.tommyc.android.tourofhonor E/bonusListing: Calling createDataBase
2019-02-02 22:40:29.195 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: Entered createDatabase
2019-02-02 22:40:29.195 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: entered checkDatabase
2019-02-02 22:40:29.224 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: createDatabase passing to copyDatabase
2019-02-02 22:40:29.224 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: entered copyDatabase
2019-02-02 22:40:29.224 603-603/net.tommyc.android.tourofhonor E/AppDataDBHelper: copyDatabase close
2019-02-02 22:40:29.224 603-603/net.tommyc.android.tourofhonor D/AndroidRuntime: Shutting down VM
2019-02-02 22:40:29.225 603-603/net.tommyc.android.tourofhonor E/AndroidRuntime: FATAL EXCEPTION: main
Process: net.tommyc.android.tourofhonor, PID: 603
java.lang.Error: ErrorCopyingDataBase
at net.tommyc.android.tourofhonor.AppDataDBHelper.createDataBase(AppDataDBHelper.java:57)
at net.tommyc.android.tourofhonor.bonusListing.onCreate(bonusListing.java:53)
at android.app.Activity.performCreate(Activity.java:7183)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1220)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2908)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3030)
at android.app.ActivityThread.-wrap11(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1696)
at android.os.Handler.dispatchMessage(Handler.java:105)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6938)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)
最佳答案
[更新:测试好的代码]我已将代码从复制数据库更新为从数据库表中读取一组名称。
为了访问存储在 assets 文件夹中的外部 sqlite 数据库,这对我有用,所以请检查一下。
data inserted into external sqlite database but not saving in android studio
对于您的情况,我建议进行以下更改:
1) 我在 sqlite dbbrowser 中的表:
CREATE TABLE `Bonus_Data` (
`id` INTEGER NOT NULL,
`name` TEXT NOT NULL,
PRIMARY KEY(`id`)
);
2) 在您的 AppDataDBHelper 类中:
public class AppDataDBHelper extends SQLiteOpenHelper{
private static String TAG = "AppDataDBHelper"; // Tag just for the LogCat window
private static String DB_NAME = "appdata.db";// Database name
private static String DB_TABLE = "Bonus_Data";
private static int DB_VERSION = 1;
private SQLiteDatabase mDataBase;
private final Context mContext;
public AppDataDBHelper(Context context) {
super(context, DB_NAME, null, DB_VERSION);
this.mContext = context;
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
public void createDataBase() throws IOException {
//If the database does not exist, copy it from the assets.
Log.e(TAG, "Entered createDatabase");
boolean mDataBaseExist = checkDataBase();
if (!mDataBaseExist) {
this.getReadableDatabase();
this.close();
try {
//Copy the database from assets
Log.e(TAG, "createDatabase passing to copyDatabase");
copyDataBase();
Log.e(TAG, "createDatabase database created");
} catch (IOException mIOException) {
throw new Error("ErrorCopyingDataBase");
}
}
}
//Check that the database exists here: /data/data/your package/databases/Da Name
private boolean checkDataBase() {
Log.e(TAG, "entered checkDatabase");
File dbFile = new File(mContext.getDatabasePath(DB_NAME).getPath());
if (dbFile.exists()) return true;
File dbdir = dbFile.getParentFile();
if (!dbdir.exists()) {
dbdir.mkdirs();
}
return false;
}
//Copy the database from assets
private void copyDataBase() throws IOException {
InputStream mInput = null;
OutputStream mOutput = null;
Log.e(TAG, "entered copyDatabase");
Log.e(TAG, "copyDatabase close");
String outFileName = mContext.getDatabasePath(DB_NAME).getPath();
try {
mInput = mContext.getAssets().open(DB_NAME);
mOutput = new FileOutputStream(outFileName);
byte[] buffer = new byte[1024];
int length;
while ((length = mInput.read(buffer)) > 0) {
mOutput.write(buffer, 0, length);
}
mOutput.flush();
mOutput.close();
mInput.close();
} catch (IOException ie) {
throw new Error("Copydatabase() error ");
}
}
public ArrayList<String> readNames() {
boolean distinct = true;
ArrayList<String> mname = new ArrayList<>();
String[] columns = new String[]{"name"};
//Cursor cursor = ourDatabase.query(DATABASE_TABLE, columns, null, null, null, null, null);
//This is used to draw distinct data values from database table
Cursor cursor = mDataBase.query(distinct, DB_TABLE, columns, null, null, null, null, null, null);
int iName = cursor.getColumnIndex("name");
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
mname.add(cursor.getString(iName));
}
cursor.close();
return mname;
}
//this openRead is needed everytime you access this helper class
public void openRead() {
mDataBase = getReadableDatabase(); //mDatabase should always be initialized or else app crashes while accessing TABLE
}
}
2) 最后在您的 Activity 的 onCreate() 方法中创建数据库:
public class TestActivity extends AppCompatActivity {
private static final String TAG = "TestActivity";
private ArrayList<String> name = new ArrayList<>();
private TextView textView_name;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test);
AppDataDBHelper appDBHelper = new AppDataDBHelper(this);
try {
Log.e(TAG, "Calling createDataBase");
appDBHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to CREATE DATABASE");
} finally {
appDBHelper.close();
}
textView_name = findViewById(R.id.textView_name);
check();
String message = "";
for (int i=0; i<name.size(); i++) {
message = message + name.get(i) + "\n";
}
textView_name.setText(message);
}
private void check() {
try {
AppDataDBHelper appDataDBHelper = new AppDataDBHelper(this);
appDataDBHelper.openRead(); //without this app crashes
name = appDataDBHelper.readNames();
appDataDBHelper.close();
} catch (Exception e) {
throw new Error("error reading");
}
}
}
关于android - 复制文件 : InputStream seems to be failing when trying to copy a DB out of the assets folder 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54500706/
我刚刚遇到了一个非常奇怪的行为。这是代码: // So far everything's fine val x: Try[Try[Unit]] = Try(Try{}) x: scala.util.T
“输出”是一个序列化的 OpenStruct。 定义标题 try(:output).try(:data).try(:title) 结束 什么会更好? :) 最佳答案 或者只是这样: def title
我有以下元组 - (t1,t2) :(Try,Try) 我想检查两者是否成功或其中之一是否失败,但避免代码重复。像这样的东西: (t1,t2) match { case (Success(v1),Su
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
有一点特殊,尝试创建一段 try catch 代码来处理 GoogleTokenResponse,但编译器在 try 时抛出异常错误。有什么想法吗? 错误信息: | Loading Grails 2.
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
为什么在 readFile2() 中我需要捕获 FileNotFoundException 以及稍后由 close( ) 方法,并且在 try-with-resources(inside readfi
我正在使用 Apache POI 尝试读取 Word 文件,但即使您使用过 Apache POI,这仍然应该是可以回答的。在 HWPF.extractor 包中有两个对象:WordExtractor
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
我正在使用 Try::Tiny尝试捕捉。 代码如下: use Try::Tiny; try { print "In try"; wrongsubroutine(); # undefi
我想知道这样的代码是否会在抛出异常后总是中断而不继续运行,因此代码不会继续执行第二个 temp.dodaj(b)。 Avto *a = new Avto("lambo",4); Avt
我知道在try子句中必须有一个与资源关联的变量声明。 但是除了被分配一个通常的资源实例化之外,它是否可以被分配一个已经存在的资源,例如: public String getAsString(HttpS
我有一个写的方法。此方法仅扫描用户输入的整数输入。如果用户输入一个字符值,它将抛出一个输入不匹配异常,这是在我的 Try-Catch 语句中处理的。问题是,如果用户输入任何不是数字的东西,然后抛出异常
我注意到这不会编译: PrintWriter printWriter = new PrintWriter("test.txt"); printWriter.append('a'); printWrit
我经常看到人们写这样的代码: try: some_function() except: print 'something' 当我认为这样做更干净时: try: some_functio
该应用程序将在第二个显示器上正常显示内容。问题是当我旋转 iPad 时内容不会在 iPad 上旋转。 看过: http://developer.apple.com/library/ios/#qa/qa
我正在学习 java,我发现我不喜欢的一件事通常是当我有这样的代码时: import java.util.*; import java.io.*; public class GraphProblem
我使用 C++ 有一段时间了,对普通的 try/catch 很熟悉。但是,我现在发现自己在 Windows 上,在 VisualStudio 中编码以进行 COM 开发。代码的几个部分使用了如下内容:
我是一名优秀的程序员,十分优秀!