当前位置: 首页>>代码示例>>Java>>正文


Java JsonContext.pushValue方法代码示例

本文整理汇总了Java中jodd.json.JsonContext.pushValue方法的典型用法代码示例。如果您正苦于以下问题:Java JsonContext.pushValue方法的具体用法?Java JsonContext.pushValue怎么用?Java JsonContext.pushValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jodd.json.JsonContext的用法示例。


在下文中一共展示了JsonContext.pushValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: serializeMap

import jodd.json.JsonContext; //导入方法依赖的package包/类
private static boolean serializeMap(final JsonContext jsonContext, Map<?, ?> map) {
    if (jsonContext.pushValue(map)) {
        // prevent circular dependencies
        return false;
    }
    jsonContext.writeOpenObject();
    boolean notfirst = false;
    for (Map.Entry<?, ?> entry : map.entrySet()) {
        final Object value = entry.getValue();
        if (value == null) {
            continue;
        }
        final Object key = entry.getKey();
        jsonContext.pushName(key != null ? key.toString() : null, notfirst);
        jsonContext.serialize(value);
        if (!notfirst && jsonContext.isNamePopped()) {
            notfirst = true;
        }
    }
    jsonContext.writeCloseObject();
    jsonContext.popValue();
    return true;
}
 
开发者ID:febit,项目名称:febit,代码行数:24,代码来源:Json.java

示例2: serializeObject

import jodd.json.JsonContext; //导入方法依赖的package包/类
private static boolean serializeObject(final JsonContext jsonContext, final Object source) {
    if (jsonContext.pushValue(source)) {
        // prevent circular dependencies
        return false;
    }
    InternalJsonContext internalJsonContext = (InternalJsonContext) jsonContext;
    internalJsonContext.writeOpenObject();
    final PropertyDescriptor[] propertyDescriptors = ClassIntrospector.lookup(source.getClass()).getAllPropertyDescriptors();
    boolean notfirst = false;
    for (PropertyDescriptor propertyDescriptor : propertyDescriptors) {
        final String propertyName = propertyDescriptor.getName();
        if (internalJsonContext.isExcluded(source, propertyName)) {
            continue;
        }
        final Getter getter = propertyDescriptor.getGetter(false);
        if (getter == null) {
            continue;
        }
        final Object value;
        try {
            value = getter.invokeGetter(source);
        } catch (InvocationTargetException | IllegalAccessException ex) {
            throw new JsonException(ex);
        }
        if (value == null) {
            continue;
        }
        internalJsonContext.pushName(propertyName, notfirst);
        internalJsonContext.serialize(value);
        if (!notfirst && internalJsonContext.isNamePopped()) {
            notfirst = true;
        }
    }
    internalJsonContext.writeCloseObject();
    jsonContext.popValue();
    return true;
}
 
开发者ID:febit,项目名称:febit,代码行数:38,代码来源:Json.java

示例3: serialize

import jodd.json.JsonContext; //导入方法依赖的package包/类
/**
 * Detects circular dependencies and pushes value as current
 * type context.
 */
public final boolean serialize(JsonContext jsonContext, T value) {
	if (jsonContext.pushValue(value)) {
		// prevent circular dependencies
		return false;
	}

	serializeValue(jsonContext, value);

	jsonContext.popValue();

	return true;
}
 
开发者ID:indic-ocr,项目名称:LibreOCR,代码行数:17,代码来源:ValueJsonSerializer.java


注:本文中的jodd.json.JsonContext.pushValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。