获取数组对象的长度和尺寸
import java.lang.reflect.Array; /* 来 自* NowJava.com */ public class Main { public static void main(String[] args) { Object o = new int[1][2][3]; // Get length int len = Array.getLength(o); // 1 // Get dimension int dim = getDim(o); // 3 } public static int getDim(Object array) { int dim = 0; Class cls = array.getClass(); while