Android SD card read database

Source: Internet
Author: User

Add permissions in Manifest first

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />

Then add the method in mainactivity

Sqlitedatabase dB; private final string database_path = android. OS. environment. getexternalstoragedirectory (). getabsolutepath () + "/vote"; private string database_filename = "db_vote.db"; // initialize the database private sqlitedatabase opendatabase () {try {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. db_vote); 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 ();} dB = sqlitedatabase. openorcreatedatabase (databasefilename, null); Return dB;} catch (exception e) {e. printstacktrace ();} return NULL ;}

Source: http://www.cnblogs.com/oldfeel/archive/2012/04/20/2458776.html

 

 

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.