1 String 到 char[] String s= "qweqwe"; char[] m = s.toCharArray(); 2 char[] 到 String char[] m = new char[]{'a','b','c'}; String s = String.valueOf(m);