- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图用 recyclerview 显示我的 sqlite 数据,但它给了我这个错误:
无法从 CursorWindow 读取第 0 行第 9 列。在访问游标中的数据之前,请确保游标已正确初始化。
CursorWindow 有 6 行、9 列。
我检查了表格列,但找不到问题!请帮忙!!
我的代码:
public class LinesC {
private String BackgroundColor;
private int id;
private String City_ID;
private int FirstStationNumber;
private int Line_ID;
private int LastSTationNumber;
private int LineNumber;
private int Status;
private String TextColor;
private String Title;
public LinesC(String backgroundColor, int id, String city_ID, int firstStationNumber, int line_ID, int lastSTationNumber, int lineNumber, int status, String textColor, String title) {
BackgroundColor = backgroundColor;
this.id = id;
City_ID = city_ID;
FirstStationNumber = firstStationNumber;
Line_ID = line_ID;
LastSTationNumber = lastSTationNumber;
LineNumber = lineNumber;
Status = status;
TextColor = textColor;
Title = title;
}
public String getBackgroundColor() {
return BackgroundColor;
}
public int getId() {
return id;
}
public String getCity_ID() {
return City_ID;
}
public int getFirstStationNumber() {
return FirstStationNumber;
}
public int getLine_ID() {
return Line_ID;
}
public int getLastSTationNumber() {
return LastSTationNumber;
}
public int getLineNumber() {
return LineNumber;
}
public int getStatus() {
return Status;
}
public String getTextColor() {
return TextColor;
}
public String getTitle() {
return Title;
}
}
我的适配器:
public class LinesAdapter extends RecyclerView.Adapter <LinesAdapter.RecyclerViewHolder> {
SharedPreferences shared;
SharedPreferences.Editor editor;
ArrayList<LinesC> arrayList = new ArrayList<>();
Context context;
public LinesAdapter(ArrayList<LinesC> arrayList, Context context) {
this.arrayList = arrayList;
this.context = context;
}
public LinesAdapter(ArrayList<LinesC> arrayList) {
this.arrayList = arrayList;
}
@Override
public RecyclerViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.model_lines,parent,false);
RecyclerViewHolder recyclerViewHolder = new RecyclerViewHolder(view);
context = parent.getContext();
return recyclerViewHolder;
}
@Override
public void onBindViewHolder(final RecyclerViewHolder holder, int position) {
final LinesC linesC = arrayList.get(position);
holder.title.setText(String.valueOf(arrayList.get(position).getId()));
}
@Override
public int getItemCount() {
return arrayList.size();
}
public class RecyclerViewHolder extends RecyclerView.ViewHolder
{
TextView title;
LinearLayout linearLayout;
RecyclerViewHolder(View view)
{
super(view);
linearLayout = (LinearLayout) itemView.findViewById(R.id.click_layout);
title = (TextView) itemView.findViewById(R.id.title);
}
}
}
我的DBHelper类的三个方法:
// Create Table of Lines
public static final String CREATE_LINES_TABLE = "create table "+ LinesContract.LinesEntry.TABLE_NAME+
" ("+LinesContract.LinesEntry.BACKGROUND_COLOR+" text,"+LinesContract.LinesEntry.CITY_ID+" int,"+
LinesContract.LinesEntry.FIRSTSTATIONNUMBER+" int,"+LinesContract.LinesEntry.LINE_ID+" int,"+
LinesContract.LinesEntry.LASTSTATIONNUMBER+" int,"+LinesContract.LinesEntry.LINENUMBER+" int,"+
LinesContract.LinesEntry.STATUS+" int,"+ LinesContract.LinesEntry.TEXTCOLOR+" text," +
LinesContract.LinesEntry.TITLE+" text);";
public void putLineInformation(String backgroundColor, String city_ID, int firstStationNumber, int line_ID, int lastSTationNumber, int lineNumber, int status, String textColor, String title,SQLiteDatabase sqLiteDatabase)
{
ContentValues contentLineValues = new ContentValues();
contentLineValues.put(LinesContract.LinesEntry.BACKGROUND_COLOR,backgroundColor);
contentLineValues.put(LinesContract.LinesEntry.CITY_ID,city_ID);
contentLineValues.put(LinesContract.LinesEntry.FIRSTSTATIONNUMBER,firstStationNumber);
contentLineValues.put(LinesContract.LinesEntry.LINE_ID,line_ID);
contentLineValues.put(LinesContract.LinesEntry.LASTSTATIONNUMBER,lastSTationNumber);
contentLineValues.put(LinesContract.LinesEntry.LINENUMBER,lineNumber);
contentLineValues.put(LinesContract.LinesEntry.STATUS,status);
contentLineValues.put(LinesContract.LinesEntry.TEXTCOLOR,textColor);
contentLineValues.put(LinesContract.LinesEntry.TITLE,title);
long ll = sqLiteDatabase.insert(LinesContract.LinesEntry.TABLE_NAME,null,contentLineValues);
Log.d("Database Operations","****** One Row Inserted ******** "+contentLineValues);
}
public Cursor getLineInformation(SQLiteDatabase sqLiteDatabaseLine)
{
String [] projectionLine = {LinesContract.LinesEntry.BACKGROUND_COLOR, LinesContract.LinesEntry.CITY_ID, LinesContract.LinesEntry.FIRSTSTATIONNUMBER,
LinesContract.LinesEntry.LINE_ID, LinesContract.LinesEntry.LASTSTATIONNUMBER,
LinesContract.LinesEntry.LINENUMBER, LinesContract.LinesEntry.STATUS,
LinesContract.LinesEntry.TEXTCOLOR, LinesContract.LinesEntry.TITLE
};
Cursor lineCursor = sqLiteDatabaseLine.query(LinesContract.LinesEntry.TABLE_NAME,projectionLine,null,null,null,null,null);
return lineCursor;
}
我的异步任务:
String json_url = "http://192.168.1.3/MetroRun/MRS.svc/GetLines/d5d23f68-e760-4561-b96c-d35cc3928d42/1/0";
URL url = new URL(json_url);
HttpURLConnection httpURLConnection = (HttpURLConnection)url.openConnection();
InputStream inputStream = httpURLConnection.getInputStream();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
StringBuilder stringBuilder = new StringBuilder();
String line;
while((line=bufferedReader.readLine())!=null)
{
stringBuilder.append(line+"\n");
Thread.sleep(5000);
}
httpURLConnection.disconnect();
String json_data = stringBuilder.toString().trim();
JSONArray jsonarray = new JSONArray(json_data);
DBHelper dbHelper = new DBHelper(ctx);
SQLiteDatabase sqLiteDatabase = dbHelper.getWritableDatabase();
int count = 0;
while(count<jsonarray.length())
{
JSONObject o = jsonarray.getJSONObject(count);
count++;
dbHelper.putLineInformation(o.getString("BackgroundColor"),o.getString("CityId"),
o.getInt("FirstStationNumber"),o.getInt("Id"),o.getInt("LastStationNumber")
,o.getInt("LineNumber"),o.getInt("Status"),o.getString("TextColor"),o.getString("Title"),sqLiteDatabase);
}
dbHelper.close();
我的 fragment :
public class Lines_fragment extends Fragment{
private RecyclerView recyclerView;
private RecyclerView.Adapter adapter;
public Context context;
ArrayList<LinesC> arrayList = new ArrayList<>();
public Lines_fragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_lines_fragment, container, false);
recyclerView = (RecyclerView) v.findViewById(R.id.recyclerview);
recyclerView.setLayoutManager(new LinearLayoutManager(context));
recyclerView.setHasFixedSize(true);
adapter = new LinesAdapter(arrayList,getActivity());
DBHelper dbHelper = new DBHelper(getActivity());
SQLiteDatabase sqLiteDatabaseLine = dbHelper.getReadableDatabase();
Cursor cursor = dbHelper.getLineInformation(sqLiteDatabaseLine);
while(cursor.moveToNext())
{
LinesC linesC = new LinesC(cursor.getString(0), cursor.getInt(1), cursor.getString(2), cursor.getInt(3),cursor.getInt(4),cursor.getInt(5),cursor.getInt(6),cursor.getInt(7),cursor.getString(8),cursor.getString(9));
arrayList.add(linesC);
adapter = new LinesAdapter(arrayList,getActivity());
}
dbHelper.close();
adapter = new LinesAdapter(arrayList);
recyclerView.setAdapter(adapter);
return v;
}
}
最佳答案
getLineInformation()
正在检索 9 列:
String [] projectionLine = {LinesContract.LinesEntry.BACKGROUND_COLOR, LinesContract.LinesEntry.CITY_ID, LinesContract.LinesEntry.FIRSTSTATIONNUMBER,
LinesContract.LinesEntry.LINE_ID, LinesContract.LinesEntry.LASTSTATIONNUMBER,
LinesContract.LinesEntry.LINENUMBER, LinesContract.LinesEntry.STATUS,
LinesContract.LinesEntry.TEXTCOLOR, LinesContract.LinesEntry.TITLE
};
onCreateView()
正在尝试读取 10 列:
LinesC linesC = new LinesC(cursor.getString(0), cursor.getInt(1), cursor.getString(2), cursor.getInt(3),cursor.getInt(4),cursor.getInt(5),cursor.getInt(6),cursor.getInt(7),cursor.getString(8),cursor.getString(9));
您的 LinesC
逻辑需要与您的 getLineInformation()
逻辑同步。
关于java - 从 CursorWindow 读取时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47113705/
我如何知道 CursorWindow 上有多少列?为什么它有 getNumRows() 而没有 getNumColumns(),尽管有 setNumColumns()? 最佳答案 我用这种最可怕的方式
我在我的 Android 应用程序中操作 SQLite3 数据库。我刚刚从具有 20 万行和 14 列的预填充数据库中读取。条目是单词。所有列的数据类型都是文本。查询最多 11 个字母的单词(例如 A
我试图用 recyclerview 显示我的 sqlite 数据,但它给了我这个错误: 无法从 CursorWindow 读取第 0 行第 9 列。在访问游标中的数据之前,请确保游标已正确初始化。 C
我正在尝试用我的数据库 SQLite 中的数据填充一个二维数组。但是会发生以下情况: 顺便说一下,这是我第一次使用 SQLite,我试图找出是否有类似“结果集”或“数据表”的东西......我找到了所
我正在开发一个 Android 应用程序,我想在其中实现一个添加新用户的注册功能。 首先,我创建了一个名为 Registration 的 Activity ,当按下按钮时,它会调用一个添加用户的方法:
这个问题在这里已经有了答案: Could not allocate CursorWindow (3 个答案) 关闭 6 年前。 我正在开发一个 android 应用程序,因为我使用 SQLite 数
我必须执行一个查询并将结果存储在一个列表中,我使用的函数如下: List getSpoolInRecords(String label, boolean getLastInserted) {
我正在使用 AsyncStorage在 ReactNative 中在设备上存储一些数据(大尺寸>2MB),然后用下面的代码读取它 try { const value = await Asyn
我有一个应用程序,它将一些数据(9 列)存储到 SQLite 数据库中。我遵循 vogella 中的示例并用其他一些例子对其进行了调整,直到我认为应该没问题。现在,我花了两天时间努力让我的应用程序运行
我在进程之间发送/接收自定义 Query 对象。 Query 实现了 Parcelable 并包装了一个 CursorWindow 实例。首先,我通过 Messenger 将它从进程 A 发送到进程
我遇到了问题。我无法从数据库获取和设置 blob。打开我的应用程序后,我在 Logcat 中收到此错误 Caused by: java.lang.IllegalStateException: Coul
我正在尝试创建一个应用程序来从预先存在的数据库中提取 sqlite 数据,在应用程序运行之前将其复制到目录中。该数据库包含超过 2000 行和大约 20 列。 DBAdapter 类。 package
当我尝试添加到 android 上的 sqllite DB 时,我看到了上述错误。我正在使用 cloudant 库。这是堆栈跟踪: 2019-07-17 18:04:48.292 5522-5753/
我收到一些用户的以下错误。 无法从 CursorWindow 读取第 34 行第 11 列。在访问游标中的数据之前,请确保游标已正确初始化。 此问题发生在以下行中: @Override pub
我尝试使用上下文菜单从 ListView 中删除数据,但出现 java.lang.IllegalStateException: Couldn't read row 0, col 2 from Curs
我已经创建了静态数据库并且这个数据库为图像添加了 base 64 字符串这个图像是大尺寸我运行我的应用程序时数据库出错以获取字符串如何解决它。 我是 Android 编程的新手... 数据库 publ
Log Cat Caused by: java.lang.IllegalStateException: Couldn't read row 0, col 5 from CursorWindow. Ma
我在 sqlite 数据库中插入图像时遇到困难。我的代码中没有语法错误。我运行它后,应用程序自动强制停止。 logcat 显示: 由以下原因引起:java.lang.IllegalStateExcep
我以前使用过 SQLDB,但只保存了 3 项。现在我想添加更多内容,但出现此错误,但无法解决。我不明白我的光标在哪里变坏并且不再工作了。谁能解释一下为什么我现在会收到此错误?非常感谢。 缺席.java
我在执行我的代码时遇到此错误。 Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized c
我是一名优秀的程序员,十分优秀!