0

我在我的 android 应用程序中创建了数据库,然后插入了一条语句。一切正常,所以我想从 MY_PACKAGE/databses/ 获取我的数据库并将其复制到 sd 卡以便可以访问。

这行得通,但是当我尝试使用我的 sqlite Firefox 插件打开时,我收到此错误:

SQLiteManager: Error in opening file Datas.sqlite - either the file is encrypted or corrupt
Exception Name: NS_ERROR_FILE_CORRUPTED
Exception Message: Component returned failure code: 0x8052000b (NS_ERROR_FILE_CORRUPTED) [mozIStorageService.openUnsharedDatabase] 

也许我必须用别的东西打开或者我不能这么容易地打开这个?

我将给出我使用的所有代码:

处理我的数据库我使用了所有这些代码:

在 Android 应用程序中使用您自己的 SQLite 数据库

复制到sd卡这个方法:

public static boolean backUpDataBase(Context context) {

        final String DATABASE_NAME = "Data.sqlite";
        final String DATABASE_NAME_FULL = "/data/data/package/databases/"
                + DATABASE_NAME;
        boolean result = true;

        // Source path in the application database folder
        String appDbPath = DATABASE_NAME_FULL;

        // Destination Path to the sdcard app folder
        String sdFolder = Environment.getExternalStorageDirectory()
                .getAbsolutePath() + "/" + "Datas.sqlite";

        File f = new File(sdFolder);
        // if (!f.exists()) {
        // f.mkdir();
        // }

        InputStream myInput = null;
        OutputStream myOutput = null;
        try {
            // Open your local db as the input stream
            myInput = new FileInputStream(appDbPath);
            // Open the empty db as the output stream
            myOutput = new FileOutputStream(f);

            // 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);
            }
        } catch (IOException e) {
            result = false;
            e.printStackTrace();
        } finally {
            try {
                // Close the streams
                if (myOutput != null) {
                    myOutput.flush();
                    myOutput.close();
                }
                if (myInput != null) {
                    myInput.close();
                }
            } catch (IOException e) {
            }
        }

        return result;
    }

我的数据库如下所示: 2 个表:

CREATE TABLE "Test" ("_id" INTEGER PRIMARY KEY  NOT NULL  UNIQUE , "Info" TEXT)

CREATE TABLE "android_metadata" ("locale" TEXT DEFAULT 'en_US')

和代码来做我需要的一切:

//返回可读写的databse DataBaseHelper dataBase= Main.createOrOpenDB(mContext);

        Main.backUpDataBase(mContext);

        db = dataBase.myDataBase;

        // Step 1: Inflate layout
        setContentView(R.layout.tabs_fragment_activity);

        try{
        db.execSQL("INSERT INTO " +"Test" +" Values ('1','Inserted');");
        }catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        }

那么哪里错了,因为插入工作正常?

4

2 回答 2

0

听起来您的代码中有问题将其写入 SD 卡(我没有立即看到)。

我想知道,你为什么要把它复制到 SDCard 上?听起来您只想检查文件...

如果这实际上是您的目标,那么我建议您运行模拟器并简单地使用 Eclipse 中的 DDMS 视图,导航到文件并单击右上角的工具提示显示“从设备中提取文件”的按钮。您在模拟器中获得的内容应该与您在手机上获得的内容完全相同。

于 2012-04-23T14:01:39.297 回答
0

尝试使用SQLiteOpenHelper | 安卓开发者

于 2012-04-23T14:39:51.050 回答