flex java json_java – 使用Flexjson更改属性名称

您可以使用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"}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值