How to avoid “flexjson.JSONSerializer” convert Datetime Object to Timestamp? I want string like yyyy/MM/dd hh:mm:ss

StackOverflow https://stackoverflow.com/questions/11429885

  •  20-06-2021
  •  | 
  •  

I'm using flexjson.JSONSerializer to serialize Java Object, but when serializes Date property, it is converted into Timestamp:

new JSONSerializer().exclude("*.class").serialize(obj);

How can flexjson convert from Date to String of readable time?

有帮助吗?

解决方案

You can use DateTransformer for the same.

 new JSONDeserializer().use("person.birthdate", new DateTransformer("yyyy/MM/dd hh:mm:ss") ).deserialize( people );

其他提示

For the serializer you should use JSONSerializer#transform

new JSONSerializer().exclude("*.class")
    .transform(new DateTransformer("yyyy/MM/dd hh:mm:ss"), "creationDate")
    .serialize(obj);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top