本文整理匯總了Java中org.apache.commons.lang3.ArrayUtils.toArray方法的典型用法代碼示例。如果您正苦於以下問題:Java ArrayUtils.toArray方法的具體用法?Java ArrayUtils.toArray怎麽用?Java ArrayUtils.toArray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.lang3.ArrayUtils
的用法示例。
在下文中一共展示了ArrayUtils.toArray方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: main
import org.apache.commons.lang3.ArrayUtils; //導入方法依賴的package包/類
public static void main(String[] args)
{
String[] array = ArrayUtils.toArray("one", "two", "three");
System.out.println(ArrayUtils.toString(array));
array = ArrayUtils.add(array, "four");
System.out.println(ArrayUtils.toString(array));
if(ArrayUtils.contains(array,"two"))
{
System.out.println("found \"two\" in the array.");
}
ArrayUtils.reverse(array);
System.out.println(ArrayUtils.toString(array));
}
示例2: postprocess
import org.apache.commons.lang3.ArrayUtils; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
public Object postprocess(DefaultContext ctx) throws Exception {
Object instance = ctx.getRef();
if (instance == null) {
return null;
}
if (excluded.contains(instance.getClass())) {
return instance;
}
Field[] fields;
if (ctx.getParent() == null) {
fields = ArrayUtils.toArray(ctx.getField());
} else {
fields = ReflectionUtils.getDeclaredFields(instance.getClass(), true);
}
for (PostProcessor postprocessor : registry.values()) {
for (Field field : fields) {
if (!ReflectionUtils.makeFieldAccessible(field)) {
continue;
}
Object o = field.get(instance);
if (o == null) {
continue;
}
Object postprocessed = postprocessor.process(ctx.createChild(instance, field), o);
if (!Objects.equals(o, postprocessed)) {
field.set(instance, postprocessed);
}
}
}
return instance;
}