java中如何使用map存取数据
4个回答
展开全部
1.声明一个map: Map map = new HashMap();
2.向map中放值,注意:map是key-value的形式存放的.如:
map.put(”sa”,”dd”);
3.从map中取值:String str = map.get(”sa”).toString();结果是:str = ”dd”;
4.遍历一个map,从中取得key 和value
Map map = new HashMap() ;
Iterator it = map.entrySet().iterator() ;
while (it.hasNext())
{
Map.Entry entry = (Map.Entry) it.next() ;
Object key = entry.getKey() ;
Object value = entry.getValue() ;
}
2.向map中放值,注意:map是key-value的形式存放的.如:
map.put(”sa”,”dd”);
3.从map中取值:String str = map.get(”sa”).toString();结果是:str = ”dd”;
4.遍历一个map,从中取得key 和value
Map map = new HashMap() ;
Iterator it = map.entrySet().iterator() ;
while (it.hasNext())
{
Map.Entry entry = (Map.Entry) it.next() ;
Object key = entry.getKey() ;
Object value = entry.getValue() ;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/**
* Map
* -- HashMap
* -特点: 1、可以使用NULL值 和NULL键
* 2、不同步
* (除了非同步和允许使用NULL,其他与HashTable 没什么区别)
* -方法
* 如下
* @author caihai
*
*/
public class HashMapDemo {
public static void main(String args[])
{
System.out.println("HashMap:----------------------------------");
Map<String,Integer> hashmap=new HashMap<String,Integer>();
//按键-值的方式 存入数据
hashmap.put("1", 1);
hashmap.put("2",2);
hashmap.put("4",4);
hashmap.put("3",3);
hashmap.put(null,null);
//containsKey
System.out.println("判断是否含有”1“此键"+hashmap.containsKey("1"));
System.out.println("-------------------------------------------");
//containsValue
System.out.println("判断时候含有”1“此值"+hashmap.containsValue(1));
System.out.println("-------------------------------------------");
//遍历MAP 的二种方法
//keySet
System.out.println("利用keyset方式 遍历MAP");
Set<String> keyset=hashmap.keySet();
for(String ks:keyset)
{
System.out.println("keyset---key:"+ks+" value:"+hashmap.get(ks));
}
System.out.println("-------------------------------------------");
System.out.println("利用entrySet方式 遍历MAP");
Set<Map.Entry<String, Integer>> entryset=hashmap.entrySet();
for(Map.Entry<String,Integer> entry:entryset)
{
System.out.println("entryset---key:"+entry.getKey()+" value:"+entry.getValue());
}
System.out.println("-------------------------------------------");
System.out.println("判断Hashmap是否为空"+hashmap.isEmpty());
System.out.println("-------------------------------------------");
System.out.println("通过get(Object key)获得对应值"+hashmap.get(null));
System.out.println("-------------------------------------------");
System.out.println("计算Map的大小"+hashmap.size());
Map<String,Integer> insertmap=new HashMap<String,Integer>();
insertmap.put("100",100);
insertmap.put("101",101);
insertmap.put("102",102);
System.out.println("-------------------------------------------");
System.out.println("将MAP加入到MAP中");
hashmap.putAll(insertmap);
Set<String> keyseti=hashmap.keySet();
for(String ks:keyseti)
{
System.out.println("key:"+ks+" value:"+hashmap.get(ks));
}
System.out.println("-------------------------------------------");
System.out.println("Get the Map values ,return Collection:");
Collection<Integer> values=hashmap.values();
Iterator<Integer> it=values.iterator();
while(it.hasNext())
{
System.out.println("The value: "+it.next());
}
}
}
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/**
* Map
* -- HashMap
* -特点: 1、可以使用NULL值 和NULL键
* 2、不同步
* (除了非同步和允许使用NULL,其他与HashTable 没什么区别)
* -方法
* 如下
* @author caihai
*
*/
public class HashMapDemo {
public static void main(String args[])
{
System.out.println("HashMap:----------------------------------");
Map<String,Integer> hashmap=new HashMap<String,Integer>();
//按键-值的方式 存入数据
hashmap.put("1", 1);
hashmap.put("2",2);
hashmap.put("4",4);
hashmap.put("3",3);
hashmap.put(null,null);
//containsKey
System.out.println("判断是否含有”1“此键"+hashmap.containsKey("1"));
System.out.println("-------------------------------------------");
//containsValue
System.out.println("判断时候含有”1“此值"+hashmap.containsValue(1));
System.out.println("-------------------------------------------");
//遍历MAP 的二种方法
//keySet
System.out.println("利用keyset方式 遍历MAP");
Set<String> keyset=hashmap.keySet();
for(String ks:keyset)
{
System.out.println("keyset---key:"+ks+" value:"+hashmap.get(ks));
}
System.out.println("-------------------------------------------");
System.out.println("利用entrySet方式 遍历MAP");
Set<Map.Entry<String, Integer>> entryset=hashmap.entrySet();
for(Map.Entry<String,Integer> entry:entryset)
{
System.out.println("entryset---key:"+entry.getKey()+" value:"+entry.getValue());
}
System.out.println("-------------------------------------------");
System.out.println("判断Hashmap是否为空"+hashmap.isEmpty());
System.out.println("-------------------------------------------");
System.out.println("通过get(Object key)获得对应值"+hashmap.get(null));
System.out.println("-------------------------------------------");
System.out.println("计算Map的大小"+hashmap.size());
Map<String,Integer> insertmap=new HashMap<String,Integer>();
insertmap.put("100",100);
insertmap.put("101",101);
insertmap.put("102",102);
System.out.println("-------------------------------------------");
System.out.println("将MAP加入到MAP中");
hashmap.putAll(insertmap);
Set<String> keyseti=hashmap.keySet();
for(String ks:keyseti)
{
System.out.println("key:"+ks+" value:"+hashmap.get(ks));
}
System.out.println("-------------------------------------------");
System.out.println("Get the Map values ,return Collection:");
Collection<Integer> values=hashmap.values();
Iterator<Integer> it=values.iterator();
while(it.hasNext())
{
System.out.println("The value: "+it.next());
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通过键值对的方式进行存取数据的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询