我正在将类对象添加到我的数组列表中,现在我必须循环迭代对象并保存到数据库中
我的豆类
public class SchemeBean {
private String code;
private String name;
private String value;
public String getCode(){
return code;
}
public String getName(){
return name;
}
public String getValue(){
return value;
}
public SchemeBean(String code,String name,String value){
this.code=code;
this.name=name;
this.value=value;
}
}
在数组中添加类对象
ArrayList items= null ;
String hd1 = jsonLineItem.getString("hd1");
String hd2 = jsonLineItem.getString("hd2");
String code = jsonLineItem.getString("code");
items.add(new SchemeBean(code,hd1,hd2));
现在我有这个arraylist items,它已经将SchemeBean的对象添加到它作为它的元素
现在我的要求是我必须迭代它并将其添加到数据库中,我不明白如何迭代它。请任何提示对我有很大帮助