我遇到以下错误:
Can not deserialize instance of java.io.File out of START_OBJECT token
该行中的
InlineResponse20041 response = Json.fromJson(wsResponse.asJson(), InlineResponse20041.class);
在课程InlineResponse20041
中,我有一个属性java.io.File myFile
。问题是要在此属性中反序列化。
如何从JSON反序列化java.io.File
?
谢谢