Android binds sqlite databases and programs for release together

Source: Internet
Author: User

 

A program needs to have several pieces of data as soon as it is installed. The current program first checks whether the table exists. If the table does not exist, it is created. If the table exists, it is not created. So I went online for half a day and found a solution. Put the database files under res/raw. It seems that the android raw files will not be compiled into binary files. Run the program to check whether the database table does not exist. Then, copy the database file in raw to the mobile phone using the input/output stream. The Code is as follows:

Java code

Try {

 

Java code

Log. e (DATABASE_PATH, DATABASE_PATH );

String databaseFilename = DATABASE_PATH + "/" + DATABASE_FILENAME;

File dir = new File (DATABASE_PATH );

 

If (! Dir. exists ())

Dir. mkdir ();

 

If (! (New File (databaseFilename). exists ()){

 

InputStream is = getResources (). openRawResource (

R. raw. healthmanage );

FileOutputStream fos = new FileOutputStream (databaseFilename );

Byte [] buffer = new byte [8192];

Int count = 0;

While (count = is. read (buffer)> 0 ){

Fos. write (buffer, 0, count );

}

 

Fos. close ();

Is. close ();

}

 

 

Catch (Exception e ){

Log. e ("error", "error ");

Where

Java code

DATABASE_PATH and

Java code

DATABASE_FILENAME can be customized

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.