java 2维数组如何转换为HashMap
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 2维数组如何转换为HashMap相关的知识,希望对你有一定的参考价值。
我现在有个String[][] str=null;
HashMap map=new HashMap;
map=str;我如何将string的2维数组转换为HashMap
import java.util.Map;
public class MyTest
public static void main(String[] args)
String[] first="1","2","3";
String[] second = "4","5","6";
String[][] result = first,second;
Map map = new HashMap();
for(int i=0;i<result.length;i++)
for(int j=0;j<result[i].length;j++)
map.put("str["+i+"]["+j+"]", result[i][j]);
System.out.println(map);
参考技术A 遍历,然后一个一个换 参考技术B apache commons-lang ArrayUtils
以上是关于java 2维数组如何转换为HashMap的主要内容,如果未能解决你的问题,请参考以下文章