FlexJson - 无法序列化Double []数组

时间:2015-09-26 13:26:04

标签: java arrays json serializer flexjson

我有一个带有Double []变量的简单用户类,用于指定用户的位置。

@Document
public class User {
    private long id;
    private Double[] location;
}

这是我尝试过序列化我的用户对象的代码

new JSONSerializer()
           .transform(new ArrayTransformer(), Double[].class)
           .serialize(object));

但是位置字段不会被序列化,但是其他字段也被序列化了。有人可以帮忙吗?

谢谢!

2 个答案:

答案 0 :(得分:1)

只是声明变量是不够的,因为它默认初始化为null

使用setter方法设置值或使用和空数组初始化值,例如:

private Double[] location = new Double[10];

答案 1 :(得分:1)

经过多次尝试,我终于通过明确地包括字段来实现它的工作:

final String[] includedFields = {"location"}; 

new JSONSerializer()
                    .include(includedFields)
                    .serialize(object));