UPDATE: I found where it is crashing. Its actually something to do with the copying itself. Im using a byte[] array and running a loop to write each portion of the array. Is there a better way of doing this that works for all devices? Here is the code.
//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[1024];
int length;
while ((length = myInput.read(buffer))>0){
myOutput.write(buffer, 0, length);
}
//Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
CORRECTION: I tested this app on a Droid 1, and the same problem is occuring. This tells me this is happening on multiple devices. Also crashes in emulator.
So, I have a customer that purchased an app from me that keeps getting errors while copying the database over from the assets folder to the database folder for the app. Im completely stumped on what is happening. The stack trace isnt giving me anything, except it lets me know where the problem is occuring. This program works for every phone ive tested it on. Is there something with the LG670 file system that could effect this? Here is the code that its crashing on.
//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[1024];
int length;
while ((length = myInput.read(buffer))>0){
myOutput.write(buffer, 0, length);
}
//Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
LIke I said this app works on the Galaxy S, Galaxy S II, Droid X, and Droid 2 (Only phones I have access to at the moment. Ive only recieved two errors and I believe they are from the same person. I do not believe that its a common problem but I would like to find a solution for this guy. Here is the stack trace.
Is it possible since I do not have any code in the program to actually create the database, on some devices its not making an empty database to overwrite? I dont own a phone that is having problems with this so its increasingly difficult to troubleshoot. Also, on these other phones could the database path be different than on other phones?
java.lang.Error: Error copying database
at com.bv.studyguide.NewDbHelper.createDataBase(NewDbHelper.java:63)
at com.bv.studyguide.ArmyStudyGuide.onCreate(ArmyStudyGuide.java:39)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
at android.app.ActivityThread.access$2300(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:893)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:651)
at dalvik.system.NativeStart.main(Native Method)
Thanks in advance for the help.
DB_PATHandDB_NAME? Are you writing to internal storage or the SD card? If the card, does the customer have one? – Ken White Nov 22 '11 at 1:25