Android 開發中,如何將 SQLite 和 APK 一起打包發布

來源:互聯網
上載者:User

最近一時心血來潮,嘗試開發 Android 程式,練習的項目是個簡單的天氣預報程式。其中天氣預報自然要涉及全國各地各個地區,我把這些地區名以及地區代碼放在一個 SQLite 資料庫裡,當然 Android 對 SQLite 也支援的很好。問題是,學習過程中發現很多教程或者樣本,都是程式運行後即時建立一個資料庫,然後建表、插入資料什麼的,而我自己的想法是在電腦上把資料庫事先準備好,然後隨 APK 一起打包發布,否則在 Java 代碼裡面 hard code 幾千條 insert 語句,顯然是很傻瓜的行為。經過多方網路搜尋,終於找到比較完善的解決方案。

在 Eclipse 裡建立好工程後,預設會有一個 assets 目錄,在 Eclipse 中直接將準備好的 SQLite 資料庫複寫到該目錄中,然後在主 Activity 裡面編碼:

package com.test.db;import java.io.File;import java.io.FileOutputStream;import java.io.InputStream;import java.io.OutputStream;import java.io.UnsupportedEncodingException;import android.app.Activity;import android.database.Cursor;import android.database.sqlite.SQLiteDatabase;import android.os.Bundle;public class DbtestActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        // com.test.db 是程式的包名,請根據自己的程式調整        // /data/data/com.test.db/        // databases 目錄是準備放 SQLite 資料庫的地方,也是 Android 程式預設的資料庫儲存目錄        // 資料庫名為 test.db        String DB_PATH = "/data/data/com.test.db/databases/";        String DB_NAME = "test.db";        // 檢查 SQLite 資料庫檔案是否存在        if ((new File(DB_PATH + DB_NAME)).exists() == false) {            // 如 SQLite 資料庫檔案不存在,再檢查一下 database 目錄是否存在            File f = new File(DB_PATH);            // 如 database 目錄不存在,建立該目錄            if (!f.exists()) {                f.mkdir();            }            try {                // 得到 assets 目錄下我們實現準備好的 SQLite 資料庫作為輸入資料流                InputStream is = getBaseContext().getAssets().open(DB_NAME);                // 輸出資料流                OutputStream os = new FileOutputStream(DB_PATH + DB_NAME);                // 檔案寫入                byte[] buffer = new byte[1024];                int length;                while ((length = is.read(buffer)) > 0) {                    os.write(buffer, 0, length);                }                // 關閉檔案流                os.flush();                os.close();                is.close();            } catch (Exception e) {                e.printStackTrace();            }        }        // 下面測試 /data/data/com.test.db/databases/ 下的資料庫是否能正常工作        SQLiteDatabase database = SQLiteDatabase.openOrCreateDatabase(DB_PATH + DB_NAME, null);        Cursor cursor = database.rawQuery("select * from test", null);        if (cursor.getCount() > 0) {            cursor.moveToFirst();            try {                // 解決中文亂碼問題                byte test[] = cursor.getBlob(0);                String strtest = new String(test, "utf-8").trim();                // 看輸出的資訊是否正確                System.out.println(strtest);            } catch (UnsupportedEncodingException e) {                // TODO Auto-generated catch block                e.printStackTrace();            }        }        cursor.close();    }}

出處:http://www.akasuna.com/2012/03/09/embed-sqlite-database-in-the-apk-of-android-distributed-application/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.