在我的項目中,我需要動態地將值存儲在一個字符串中,並且需要將該字符串與「,」分開。我怎樣才能做到這一點 ?請幫我..如何在java android中以字符串動態存儲值?
我的代碼:
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);
}
}
所以你想存儲從數據中解析出來的每個arropids1? – 2012-04-14 04:57:50
是的...存儲後我想分裂每個arropids1 ... – RaagaSudha 2012-04-14 05:03:28