我在 android 中创建数据库并在数据库中添加值。检索数据时,成功检索数据。当我在 for 循环中获取数据时,它包含 14 个值。如何区分这些值?
dataBaseHelper db = new dataBaseHelper(this);
List<String> studentInfo = db.getContact(eid);
for(Iterator<String> i = studentInfo.iterator(); i.hasNext(); ) {
String item = i.next();
Toast.makeText(getApplicationContext(),item, Toast.LENGTH_LONG).show();
}
在这段代码中,我想要分隔每个值的项目中有 14 个值。这个怎么做?