java操作任意数组:
1
2
3
4
5
6
7
8
|
if
(items.getClass().isArray()) {
this
.collection =
new
ArrayList();
int
length =
Array
.getLength(items);
for
(
int
i=
0
;i<length;i++) {
Object
value =
Array
.
get
(items, i);
this
.collection.add(value);
}
}
|
本文转自arac 51CTO博客,原文链接:http://blog.51cto.com/skyarac/1346783,如需转载请自行联系原作者