0

我想将 sqlite db 复制到数据库文件夹,但不知道如何使用 copyto api:

function win(entry) {
console.log("New Path: " + entry.fullPath);
}

function fail(error) {
 alert(error.code);
}

function copyFile(entry) {
 var parent = document.getElementById('parent').value,
    parentEntry = new DirectoryEntry({fullPath: parent});

 // copy the file to a new directory and rename it
 entry.copyTo(parentEntry, "file.copy", success, fail);
}

什么是入口?我必须在哪里写我的数据库路径表单资产文件夹?在最后一行它说成功但没有定义它是不是输入错误?我必须改写win吗?

4

2 回答 2

1

我通过在我的主要活动(java 代码)中添加一些代码来做到这一点:

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

     import android.app.Activity;
    import android.os.Bundle;
    import android.util.Log;
    import android.widget.EditText;

    public class main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        String pName = this.getClass().getPackage().getName();
        try
        {
        this.copy("Databases.db","/data/data/"+pName+"/app_database/");
        }

        catch (IOException e)


    {
        e.printStackTrace();
    }

    }

    void copy(String file, String folder) throws IOException 
    {

        File CheckDirectory;
        CheckDirectory = new File(folder);
        if (!CheckDirectory.exists())
        { 
            CheckDirectory.mkdir();
        }

        InputStream in = getApplicationContext().getAssets().open(file);
        OutputStream out = new FileOutputStream(folder+file);

        // Transfer bytes from in to out
        byte[] buf = new byte[1024];
        int len; while ((len = in.read(buf)) > 0) out.write(buf, 0, len);
        in.close(); out.close();

    }
    }

来源: http: //gauravstomar.blogspot.com/2011/08/prepopulate-sqlite-in-phonegap.html

于 2011-12-16T14:25:01.300 回答
1

File API 无法访问资产目录中的文件。你需要写一个插件。

于 2011-12-15T18:34:45.093 回答