我有一个哈希映射和其中的值。现在我想将地图中的值设置为键和键作为值。任何人都可以提出任何想法吗?
我的地图是
Map<String, String> col=new HashMap<String, String>();
col.put("one","four");
col.put("two","five");
col.put("three","Six");
现在我想创建另一个地图并按照我上面所说的其他方式放置它。IE,
Map<String, String> col2=new HashMap<String, String>();
col.put("five","one");
col.put("four","two");
col.put("Six","three");
有人有想法吗?谢谢