我有以下课程SolrFBLocationDoc
:
public class SolrFBLocationDoc{
@Field
private String name;
@Field
private String id;
@Field
private Location location = new Location();
//and some more class members
}
其中,Location
是来自 restfb: 的一个类com.restfb.types.Location
。
我正在尝试将 a 转换solrDocument
为类的对象,SolrFBLocationDoc
如下所示:
SolrFBLocationDoc doc = gson.fromJson(gson.toJson(solrDoc), SolrFBLocationDoc.class);
其中,solrDoc
是:
SolrDocument[{id=106377336067638, location=Location[city=null country=null latitude=null longitude=null state=null street=null zip=null]}]
并gson.toJson(solrDoc)
返回,
{"id":"106377336067638","location":"Location[city\u003dnull country\u003dnull latitude\u003dnull longitude\u003dnull state\u003dnull street\u003dnull zip\u003dnull]"}
但是,这会导致错误:
com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 166
我可以看到问题是由于将Location
类对象转换为 String by而发生的gson.toJson(solrDoc)
。
然后不使用gson.toJson(solrDoc)
,如何转换SolrDocument
为SolrFBLocationDoc
?
我怎样才能摆脱这个问题?