5

ここ数日間、アセット フォルダに 2 つのデータベースをコピーしようとしましたが、成功しませんでした。

1 つのデータベースをコピーしてアクセスすることができました。しかし、2 つ目は、あなたの助けが必要です。

4

1 に答える 1

4
private void copydatabase() throws IOException {
//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("/data/data/(packagename)/databases   /(datbasename).sqlite");
// transfer byte to inputfile to 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();
}

2番目のデータベースに対してこれを行います。

于 2012-04-27T09:10:19.060 に答える