自己动手很容易:
public class Test { public static void main(String args[]){ int[] i = fromString(Arrays.toString(new int[] { 1, 2, 3} )); } private static int[] fromString(String string) { String[] strings = string.replace("[", "").replace("]", "").split(", "); int result[] = new int[strings.length]; for (int i = 0; i < result.length; i++) { result[i] = Integer.parseInt(strings[i]); } return result; }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)