import java.util.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
}
System.out.println(map);
}
}
遍历,然后一个一个换
apache commons-lang ArrayUtils