我有一個大約15MB的數據(太大,無法存儲在每個設備上)的SQLite數據庫。我正在構建一個應用程序來與這些數據進行交互。如何從應用程序的存儲位置訪問數據庫。我不是要求某人爲我做這件事,但我該怎麼去研究如何做到這一點。是否有一個android模塊在傳遞一個ip地址(或FTP服務器IP?)之後執行此操作?我在哪裏開始研究託管我的數據庫的最佳方式,然後將其鏈接到我的應用程序?這是如何完成的高層簡介?謝謝!從Android應用程序訪問外部數據庫
0
A
回答
1
兩種方式
您可以將查詢發送到Web服務器和檢索結果(你需要接受查詢並通過HTTP發送結果Web服務器URL)。
您可以下載數據庫並將其放入應用程序數據庫目錄,然後您可以查詢此數據庫。
1
試試這個,
把你externalDB文件夾資產並打開此文件,並在數據庫中編寫,然後訪問它請看下面的例子中資產的文件夾我的externalDB文件。
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:id="@+id/button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Copy Database">
</Button>
</LinearLayout>
DatabaseHelper.java
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class DatabaseHelper extends SQLiteOpenHelper{
//The Android's default system path of your application database.
String DB_PATH =null;
private static String DB_NAME = "extenalDB";
private SQLiteDatabase myDataBase;
private final Context myContext;
/**
* Constructor
* Takes and keeps a reference of the passed context in order to access to the application assets and resources.
* @param context
*/
public DatabaseHelper(Context context) {
super(context, DB_NAME, null, 1);
this.myContext = context;
DB_PATH="/data/data/"+context.getPackageName()+"/"+"databases/";
}
/**
* Creates a empty database on the system and rewrites it with your own database.
* */
public void createDataBase() throws IOException{
boolean dbExist = checkDataBase();
if(dbExist){
//do nothing - database already exist
}else{
//By calling this method and empty database will be created into the default system path
//of your application so we are gonna be able to overwrite that database with our database.
this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}
/**
* Check if the database already exist to avoid re-copying the file each time you open the application.
* @return true if it exists, false if it doesn't
*/
private boolean checkDataBase(){
SQLiteDatabase checkDB = null;
try{
String myPath = DB_PATH + DB_NAME;
checkDB = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
}catch(SQLiteException e){
//database does't exist yet.
}
if(checkDB != null){
checkDB.close();
}
Log.v("check DB", ""+checkDB);
return checkDB != null ? true : false;
}
/**
* Copies your database from your local assets-folder to the just created empty database in the
* system folder, from where it can be accessed and handled.
* This is done by transfering bytestream.
* */
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);
// Log.v("read", "1"+myInput.read(buffer));
}
//Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
}
public void openDataBase() throws SQLException{
//Open the database
String myPath = DB_PATH + DB_NAME;
myDataBase = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
}
@Override
public synchronized void close() {
if(myDataBase != null)
myDataBase.close();
super.close();
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
//return cursor
public Cursor query(String table,String[] columns, String selection,String[] selectionArgs,String groupBy,String having,String orderBy){
return myDataBase.query("EMP_TABLE", null, null, null, null, null, null);
}
}
Main.java
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class CopyDbActivity extends Activity {
/** Called when the activity is first created. */
Cursor c=null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
((Button)findViewById(R.id.button01)).setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
DatabaseHelper myDbHelper = new DatabaseHelper(CopyDbActivity.this);
try {
myDbHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to create database");
}
try {
myDbHelper.openDataBase();
}catch(SQLException sqle){
throw sqle;
}
Toast.makeText(CopyDbActivity.this, "Success", Toast.LENGTH_SHORT).show();
c=myDbHelper.query("EMP_TABLE", null, null, null, null,null, null);
if(c.moveToFirst())
{
do {
Toast.makeText(CopyDbActivity.this,
"_id: " + c.getString(0) + "\n" +
"E_NAME: " + c.getString(1) + "\n" +
"E_AGE: " + c.getString(2) + "\n" +
"E_DEPT: " + c.getString(3),
Toast.LENGTH_LONG).show();
} while (c.moveToNext());
}
}
});
}
}
竭誠爲您服務。
相關問題
- 1. 從Spring應用程序訪問外部數據庫
- 2. 從Android應用程序傳輸數據到外部數據庫
- 3. 外部應用程序寫入訪問數據庫
- 4. 防止數據庫從外部訪問
- 5. 從Android應用程序訪問數據庫
- 6. 從.NET應用程序Android數據庫訪問
- 7. 從Android應用程序訪問MS SQL數據庫
- 8. 如何從Android應用程序訪問Oracle數據庫。
- 9. 從Android應用程序訪問Heroku數據庫
- 10. 如何從android應用程序訪問外部USB攝像頭?
- 11. Android應用程序的內部數據庫和外部數據庫
- 12. 在iOS中訪問外部SQL數據庫我正在編寫需要從外部SQL Server 2005數據庫訪問數據的iOS應用程序
- 13. Android應用程序數據訪問?
- 14. 如何從外部SQL數據庫將數據導入Android應用程序?
- 15. 使用apache訪問外部數據庫
- 16. 從應用程序外部訪問類和函數
- 17. 防止數據庫在應用程序外訪問
- 18. Android應用程序和外部數據庫之間的安全
- 19. 外部數據庫和Android應用程序
- 20. Android應用程序不提交細節到外部數據庫
- 21. android在外部設備上測試數據庫應用程序?
- 22. 從應用程序訪問IndoorAtlas數據
- 23. AWS上託管的應用程序訪問多個外部數據庫
- 24. 在Android應用程序中使用外部sqlite數據庫的問題
- 25. 如何從Jquery Mobile應用程序訪問遠程數據庫?
- 26. 如何從iPhone應用程序訪問遠程MySql數據庫
- 27. 從Windows 8應用程序訪問遠程MySQL數據庫
- 28. 從iPhone應用程序遠程訪問SQL數據庫
- 29. vb.net應用程序和微軟訪問數據庫部署
- 30. 從Android應用程序在訪問外部存儲一定的下載.sqlite數據庫
[網絡服務](https://en.wikipedia.org/wiki/Web_service)已經存在了15年以上,是當今大多數主要網站和移動應用程序的基礎。 – CommonsWare