Tecnologia do Blogger.
RSS

Re: [androidbrasil-dev] Banco no Android

Nao sei se foi gambiarra mas um jeito que achei foi de copiar da minha pasta assets para  uma pasta do sistema o banco

usando FileOutputStream mesmo

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(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();

}


2012/2/1 Ivan Lopes Alonso <kaitokuroneko11@gmail.com>
é que eu ja tenho ele pronto :)



--
Aquele Abraço,
Ricardo Araujo

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

0 comentários:

Postar um comentário