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.

link|improve this question

77% accept rate
What are you setting as DB_PATH and DB_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
Im setting the path as data/data/appname/databases/ and name as st.db. they aren't dynamic at all. Hard coded globally into the dbhelper class – Shaun Nov 22 '11 at 19:04
Why are you hardcoding them instead of reading them from the API at runtime? You're depending on things being in a specific location; they should be dynamic instead. (I have a phone from a major carrier that makes some changes that might break hard-coded paths; I'm not sure if that's the case with yours, but if the path can be retrieved at runtime instead of hardcoded, IMO it's always a better idea to do so.) – Ken White Nov 22 '11 at 19:23
Well, I found out that its crashing because it cant write the database for some reason. InputStream and OUtput Stream both open up fine, but when I run it through the while loop to write each part of the array to the output stream it crashes. The datapath is the same on the phones that im working with at the moment. I will make that dynamic though, just got to find the right place to put it. Probably on the on create method. Thats not a big problem at the moment though, gotta figure out why this byte writing isnt working. I remember having a similar problem with Galaxies... – Shaun Nov 22 '11 at 19:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.