【问题标题】:ASyncTask causing getDatabaseLockedASyncTask 导致 getDatabaseLocked
【发布时间】:2014-04-09 03:03:28
【问题描述】:

我有一个名为 CheckForUpdates 的专用类扩展 ASyncTask,它解析来自 Internet 的 JSON 文件。创建类 CheckForUpdates 并从主活动调用更新方法。我使用了一个名为 DatabaseHandler 的类,它扩展了 SQLiteOpenHelper 并管理数据库。但是,无论我做什么,当我尝试将某些内容添加到也有一个管理它的类的数据库时,我总是会收到错误 getDatabaseLocked。我已经尝试关闭所有打开的游标和数据库,删除 MainActivity 中的另一个 CheckForUpdates 实例,甚至尝试将 DatabaseHandler 的一个实例传递给 CheckForUpdates 类,这让我得到了一个 nullPointerException。正如您所看到的,我已经尝试了很多方法来尝试解决这种情况,但似乎 Asynctask 正在锁定 SQLite 数据库,而不管 Asynctask 的 onPostExecute 或 doInBackground() 中的编码是什么。

编辑不确定内容提供商是否可以在这种情况下提供帮助,但我想知道为什么它现在不能直接工作。

MainActivity.class

package com.andreyonadam.Contacts;

import com.andreyonadam.Contacts.R;
import android.os.Bundle;
import android.provider.Settings.Secure;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.widget.Toast;

@SuppressLint("NewApi")
public class MainActivity extends Activity {




    DatabaseHandler DBHandler;
    CheckForUpdates CheckForUpdates;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        DBHandler = new DatabaseHandler(this);
        CheckForUpdates = new CheckForUpdates(this.getApplicationContext());
        CheckForUpdates.check(this, DBHandler);



    }

    private void databaseUpdateLists() {
        // TODO Auto-generated method stub
        if(!DBHandler.getAllOne().isEmpty() && !DBHandler.getAllTwo().isEmpty()){

//fetch the SQL to local Array
        }else{
            Toast toast = Toast.makeText(this, Integer.toString(DBHandler.getAllOne().size()), 1000);
            toast.show();

            //fetch the SQL to local Array
        }

    }


}

CheckForUpdates.class

package com.andreyonadam.Contacts;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.util.ArrayList;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;
import android.os.AsyncTask;
import android.util.Log;

public class CheckForUpdates extends AsyncTask<URL, Void, JSONObject> {

    static InputStream is = null;
    static JSONObject jObj = null;
    static String json = "";
    JSONArray contacts = null;
    public final int version = 0;
    Context context;
    DatabaseHandler DBHandler;

    public CheckForUpdates(Context c){
        context = c;
    }

    public CheckForUpdates(){
    }

    public void check(Context c, DatabaseHandler dBHandlertemp){
        context = c;
        new CheckForUpdates().execute();
    }

    public JSONObject getJSONFromUrl(String url) {
        Log.d("Update Check", "Started");


        // Making HTTP request
        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

    }

    @Override
    protected JSONObject doInBackground(URL... params) {
        // TODO Auto-generated method stub
        JSONObject json = getJSONFromUrl("http://www.myurl.com/test/demo.json");
        return json;
    }

    protected void onPostExecute(JSONObject jsonObj) {
        DBHandler = new DatabaseHandler(context);

        ArrayList<Double> one = new ArrayList<Double>();
        ArrayList<Double> two = new ArrayList<Double>();

        //If it wasn't able to get the JSON file it will return null
        if(jsonObj != null){

        try {
            // Getting Array of Contacts
            contacts = jsonObj.getJSONArray("test");


            // looping through All Contacts
            for(int i = 0; i < contacts.length(); i++){
                JSONObject c = contacts.getJSONObject(i);

                // Storing each json item in variable
                one.add(c.getDouble("1"));
                two.add(c.getDouble("2"));
                //Fill array then copy
            }

        } catch (JSONException e) {
            e.printStackTrace();
        }

        DBHandler.addContacts(one, two);

        }
    }



}

DatabaseHandler.class

package com.andreyonadam.Contacts;

import java.util.ArrayList;
import java.util.List;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;

public class DatabaseHandler extends SQLiteOpenHelper {

     // All Static variables
     // Database Version
     private static final int DATABASE_VERSION = 1;

     // Database Name
     private static final String DATABASE_NAME = "test";

     // Contacts table name
     private static final String TABLE_MAIN = "Main";

     // Contacts Table Columns names
     private static final String KEY_NAME = "name";
     private static final String KEY_LOCATION_ONE = "one";
     private static final String KEY_LOCATION_TWO = "two";

     public DatabaseHandler(Context context) {
     super(context, DATABASE_NAME, null, DATABASE_VERSION);
     }

     // Creating Tables
     @Override
     public void onCreate(SQLiteDatabase db) {
     String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_MAIN + " ( " +
             KEY_LOCATION_ONE + " INTEGER, " +
             KEY_LOCATION_TWO + " INTEGER "+ " )";
     db.execSQL(CREATE_CONTACTS_TABLE);
     db.close();

     }

     // Upgrading database
     @Override
     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
     // Drop older table if existed
     db.execSQL("DROP TABLE IF EXISTS " + TABLE_MAIN);

     // Create tables again
     onCreate(db);
     db.close();

     }

     public List<Double> getAllOne() {
         List<Double> contactList = new ArrayList<Double>();
        // Select All Query
        String selectQuery = "SELECT " + KEY_LOCATION_ONE + " FROM " + TABLE_MAIN;

        SQLiteDatabase db = this.getWritableDatabase();
        Cursor cursor = db.rawQuery(selectQuery, null);

        // looping through all rows and adding to list
        if (cursor.moveToFirst()) {
        do {
            contactList.add(cursor.getDouble(0));
        } while (cursor.moveToNext());
        }
        cursor.close();
        db.close();

        // return contact list
        return contactList;
     }

     public List<Double> getAllTwo() {
         List<Double> contactList = new ArrayList<Double>();
        // Select All Query
        String selectQuery = "SELECT * FROM " + TABLE_MAIN;

        SQLiteDatabase db = this.getWritableDatabase();
        Cursor cursor = db.rawQuery(selectQuery, null);

        // looping through all rows and adding to list
        if (cursor.moveToFirst()) {
        do {
            contactList.add(cursor.getDouble(0));
        } while (cursor.moveToNext());
        }
        cursor.close();
        db.close();
        // return contact list
        return contactList;
     }

     void addContact(Double One, Double Two) {
         SQLiteDatabase db = this.getWritableDatabase();

         ContentValues values = new ContentValues();
         values.put(KEY_LOCATION_ONE, One); // Contact Phone
         values.put(KEY_LOCATION_ONE, Two); // Contact Phone

         // Inserting Row
         db.insert(TABLE_MAIN, null, values);
         db.close(); // Closing database connection
         }

     void voidAddTwo(ArrayList<Double> list){


     }

     void deleteAllRows(){
         SQLiteDatabase db = this.getWritableDatabase();
         db.delete(TABLE_MAIN, null, null);
         db.close();
     }

     void addContacts(ArrayList<Double> one, ArrayList<Double> two){
         synchronized(this) {
         SQLiteDatabase db = this.getWritableDatabase();
         String values = null;
         for(int i = 0; i <one.size(); i++){
             values = values.concat("(" + one.get(i) + ", " + two.get(i) + ")");
             if(i != one.size()-1){
                 values.concat(",");
             }
         }
         String CREATE_CONTACTS_TABLE = "INSERT INTO " + TABLE_MAIN + "VALUES " +
                 values + "";
         db.execSQL(CREATE_CONTACTS_TABLE);
         db.close();
         }
     }

}

【问题讨论】:

    标签: java android sqlite android-asynctask


    【解决方案1】:

    getDatabaseLocked() 只是SQLiteOpenHelper 中的一个方法,当您为Context 传递null 并尝试打开数据库时,您会在NPE 堆栈跟踪中看到它。

    null 的来源:CheckForUpdates 有两个构造函数,其中只有另一个初始化你的 context 成员变量,该变量被传递给 sqlite 助手。 CheckForUpdates.check() 使用未初始化 context 的构造函数创建一个新的 CheckForUpdates 实例。砰。

    • 去掉不初始化context的无参数构造函数。

    • check() 已经是CheckForUpdates 的方法。可能它本身不应该创建新的 CheckForUpdates 实例。

    【讨论】:

      猜你喜欢
      • 2011-07-20
      • 2014-03-19
      • 2013-05-13
      • 1970-01-01
      • 2014-04-15
      • 1970-01-01
      • 1970-01-01
      • 2012-07-27
      • 2018-06-05
      相关资源
      最近更新 更多