我想从我的数据库中获取所有行的第一列中的数据并转换为 String[] ...
List<String> item1 = new ArrayList<String>();
// c is a cursor which pointed from a database
for(int i=0;i<=nombre_row;i++)
{
c.moveToPosition(i);
item1.add(c.getString(0));
}
String[] strarray = new String[item1.size()];
item1.toArray(strarray );
我试图一步一步地发表评论,发现问题出在循环中......请帮助......提前感谢所有回答。