File[] filelist=new File(path);
System.out.println(filelist);
这样的输出是输出filelist的引用,不是真正的数组。
可以做如下的转换:
System.out.println(Arrays.toString(filelist));