當前位置: 首頁>>代碼示例>>Java>>正文


Java ArrayUtils.toArray方法代碼示例

本文整理匯總了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));
}
 
開發者ID:teiniker,項目名稱:teiniker-lectures-configurationmanagement,代碼行數:17,代碼來源:ArrayExample.java

示例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;
}
 
開發者ID:randomito,項目名稱:randomito-all,代碼行數:35,代碼來源:PostProcessorExecutor.java


注:本文中的org.apache.commons.lang3.ArrayUtils.toArray方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。