Android 如何查找列表的维度<;HashMap<;字符串,字符串>&燃气轮机;

Android 如何查找列表的维度<;HashMap<;字符串,字符串>&燃气轮机;,android,arrays,list,Android,Arrays,List,我想循环浏览列表的列表> 我需要找到列表的上限,以便在For语句中使用它 这是我的代码,我不知道在最后一行使用什么 **List<HashMap<String, String>> listMsgs = null; listMsgs = msgsXmlParser.detparse(reader); for(int i=0; i< listMsgs.** **列表列表msgs=null; listMsgs=msgsXmlParser.detparse(reade

我想循环浏览列表的列表>

我需要找到列表的上限,以便在For语句中使用它

这是我的代码,我不知道在最后一行使用什么

**List<HashMap<String, String>> listMsgs = null;

listMsgs = msgsXmlParser.detparse(reader);

for(int i=0; i< listMsgs.**
**列表列表msgs=null;
listMsgs=msgsXmlParser.detparse(reader);
对于(int i=0;i
通常您会使用
listMsgs.size()
或者您可以这样做:

for (Map<String, String> map : listMsgs) {
    // work with map here
}
for(地图地图:listMsgs){
//在这里使用地图
}

通常您会使用
listMsgs.size()
或者您可以这样做:

for (Map<String, String> map : listMsgs) {
    // work with map here
}
for(地图地图:listMsgs){
//在这里使用地图
}

通常您会使用
listMsgs.size()
或者您可以这样做:

for (Map<String, String> map : listMsgs) {
    // work with map here
}
for(地图地图:listMsgs){
//在这里使用地图
}

通常您会使用
listMsgs.size()
或者您可以这样做:

for (Map<String, String> map : listMsgs) {
    // work with map here
}
for(地图地图:listMsgs){
//在这里使用地图
}
listMsgs.size()
将在列表中为您提供大量哈希映射

listMsgs.get(i).size()
将为您提供索引i处HashMap的大小

listMsgs.size()
将为您提供列表中的许多HashMap

List<HashMap<String, String>> listMsgs = null;
        listMsgs.size();
        //size of collection
        for(HashMap<String, String> lMap : listMsgs) 
        //iterating through collection
        {
            lMap.size();
            //size of map
            for(String lKey : lMap.keySet()) 
            //iterating through map keyset
            {
                lMap.get(lKey);
                //key value
            }
        }
listMsgs.get(i).size()
将为您提供索引i处HashMap的大小

listMsgs.size()
将为您提供列表中的许多HashMap

List<HashMap<String, String>> listMsgs = null;
        listMsgs.size();
        //size of collection
        for(HashMap<String, String> lMap : listMsgs) 
        //iterating through collection
        {
            lMap.size();
            //size of map
            for(String lKey : lMap.keySet()) 
            //iterating through map keyset
            {
                lMap.get(lKey);
                //key value
            }
        }
listMsgs.get(i).size()
将为您提供索引i处HashMap的大小

listMsgs.size()
将为您提供列表中的许多HashMap

List<HashMap<String, String>> listMsgs = null;
        listMsgs.size();
        //size of collection
        for(HashMap<String, String> lMap : listMsgs) 
        //iterating through collection
        {
            lMap.size();
            //size of map
            for(String lKey : lMap.keySet()) 
            //iterating through map keyset
            {
                lMap.get(lKey);
                //key value
            }
        }
listMsgs.get(i).size()
将给出索引i处HashMap的大小

listMsgs=null;
List<HashMap<String, String>> listMsgs = null;
        listMsgs.size();
        //size of collection
        for(HashMap<String, String> lMap : listMsgs) 
        //iterating through collection
        {
            lMap.size();
            //size of map
            for(String lKey : lMap.keySet()) 
            //iterating through map keyset
            {
                lMap.get(lKey);
                //key value
            }
        }
listMsgs.size(); //收藏规模 for(HashMap-lMap:listMsgs) //遍历集合 { lMap.size(); //地图大小 for(字符串lKey:lMap.keySet()) //遍历映射键集 { lMap.get(lKey); //关键值 } }
列表列表msgs=null;
listMsgs.size();
//收藏规模
for(HashMap-lMap:listMsgs)
//遍历集合
{
lMap.size();
//地图大小
for(字符串lKey:lMap.keySet())
//遍历映射键集
{
lMap.get(lKey);
//关键值
}
}
列表列表msgs=null;
listMsgs.size();
//收藏规模
for(HashMap-lMap:listMsgs)
//遍历集合
{
lMap.size();
//地图大小
for(字符串lKey:lMap.keySet())
//遍历映射键集
{
lMap.get(lKey);
//关键值
}
}
列表列表msgs=null;
listMsgs.size();
//收藏规模
for(HashMap-lMap:listMsgs)
//遍历集合
{
lMap.size();
//地图大小
for(字符串lKey:lMap.keySet())
//遍历映射键集
{
lMap.get(lKey);
//关键值
}
}

您希望它是矩形的吗?您希望它是矩形的吗?您希望它是矩形的吗?您希望它是矩形的吗?