在我的项目中,我需要将值动态存储在字符串中,并且需要用“,”分割该字符串。我怎样才能做到这一点 ?请帮我..
我的代码:
static ArrayList<ArrayList<String>> listhere;
ArrayList<String> arropids;
String arropids1;
for(int q=0;q<listhere.size();q++)
{
arropids = listhere.get(q);
if(arropids.get(3).equals("1"))
{
arropids1 += arropids.get(0) + ",";
System.out.println("arropids1"+arropids1);
}
}