2

我是移动开发的新手,所以我决定使用 Phonegap 来开发我的应用程序。在我的应用程序中,我使用的是 SQLite 插件,因为 WebSQL 没有满足我的需求。当我尝试将使用该插件所需的文件之一放在我的项目中时,Eclipse 在以下函数中返回错误:

public void processResults(Cursor cur, String query_id, String tx_id) {

    String result = "[]";
    // If query result has rows

    if (cur.moveToFirst()) {
        JSONArray fullresult = new JSONArray();
        String key = "";
        int colCount = cur.getColumnCount();

        // Build up JSON result object for each row
        do {
            JSONObject row = new JSONObject();
            try {
                for (int i = 0; i < colCount; ++i) {
                    key = cur.getColumnName(i);
                    // for old Android SDK remove lines from HERE:
                    if(android.os.Build.VERSION.SDK_INT >= 11)
                    {
                        switch(cur.getType (i))
                        {
                            case Cursor.FIELD_TYPE_NULL:
                                row.put(key, null);
                                break;
                            case Cursor.FIELD_TYPE_INTEGER:
                                row.put(key, cur.getInt(i));
                                break;
                            case Cursor.FIELD_TYPE_FLOAT:
                                row.put(key, cur.getFloat(i));
                                break;
                            case Cursor.FIELD_TYPE_STRING:
                                row.put(key, cur.getString(i));
                                break;
                            case Cursor.FIELD_TYPE_BLOB:
                                row.put(key, cur.getBlob(i));
                                break;
                        }
                    }
                    else // to HERE.
                    {
                        row.put(key, cur.getString(i));
                    }
                }
                fullresult.put(row);

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

        } while (cur.moveToNext());

        result = fullresult.toString();
    }
    if(query_id.length() > 0)
        this.sendJavascript(" SQLitePluginTransaction.queryCompleteCallback('" + tx_id + "','" + query_id + "', " + result + ");");

}

在第 20 行(当我们有“switch(cur.getType (i))”时),Eclipse 返回以下错误:

The method getType(int) is undefined for the type Cursor

当我看到这个时,我尝试用谷歌搜索它,并且在 Android 的文档上说 getType 是 Cursor 的方法。

这是此文件导入的内容:

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import com.phonegap.api.Plugin;
import com.phonegap.api.PluginResult;
import android.database.Cursor;
import android.database.sqlite.*;
import android.util.Log;

由于不了解 Java,我无法弄清楚这一点,并且在我的搜索中没有找到任何东西,但我可能会遗漏一些东西。我希望有人可以帮助我,谢谢

4

1 回答 1

3

您的目标是哪个版本的 Android?在API 11 (Honeycomb)中添加了 getType 方法。

您可以在标题的右侧将其视为('Since: API Level 11'),并且您可能会发现参考页面顶部的“按 API 级别过滤”框很有用。

于 2012-05-02T12:04:36.430 回答