您可以使用Custom Transformer实现此目的.根据Flexjson页面变换器是:
Responsible for deciding how to translate the passed in object to
JSON, making the appropriate calls on the JSONContext object to output
the JSON, and/or passing the object along the transformation process.
Flexjson为此提供了一个抽象类AbstractTransformer;扩展和覆盖转换(Object对象)以自己处理转换.
下面粘贴的是我为手动指定字段名称而编写的FieldNameTransformer的代码:
public class FieldNameTransformer extends AbstractTransformer {
private String transformedFieldName;
public FieldNameTransformer(String transformedFieldName) {
this.transformedFieldName = transformedFieldName;
}
public void transform(Object object) {
boolean setContext = false;
TypeContext typeContext = getContext().peekTypeContext();
//Write comma before starting to write field name if this
//isn't first property that is being transformed
if (!typeContext.isFirst())
getContext().writeComma();
typeContext.setFirst(false);
getContext().writeName(getTransformedFieldName());
getContext().writeQuoted(object.toString());
if (setContext) {
getContext().writeCloseObject();
}
}
/***
* TRUE tells the JSONContext that this class will be handling
* the writing of our property name by itself.
*/
@Override
public Boolean isInline() {
return Boolean.TRUE;
}
public String getTransformedFieldName() {
return this.transformedFieldName;
}
}
以下是如何使用这个自定义变换器:
JSONSerializer serializer = new JSONSerializer().transform(new FieldNameTransformer("Name"), "name");
其中原始字段的名称为“name”,但在json输出中,它将替换为Name.
示例:
{"Name":"Abdul Kareem"}