1

我有以下课程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),如何转换SolrDocumentSolrFBLocationDoc

我怎样才能摆脱这个问题?

4

1 回答 1

0

在您的SolrFBLocationDoc课程中,locationivar 是一种类型com.restfb.types.Location,但在您的 JSON 字符串中:

"location":"Location[city\u003dnull country\u003dnull latitude\u003dnull longitude\u003dnull state\u003dnull street\u003dnull zip\u003dnull]" 

表示这location是一个字符串。由于SolrFBLocationDoc定义,实际上,在分号之后,Gson 需要一个“{”(即 a BEGIN_OBJECT)。但它发现"Location.., 那是一个字符串,所以它不会解析。

正确的字符串就像:

{"id":"106377336067638","location":{"city":null, "country":null, "latitude":null, "longitude":null, "state":null, "street":null, "zip":null}}

所以这意味着gson.toJson(solrDoc)返回一个转义字符串作为location键。这可能取决于如何SolrDocument定义。可能在那个类location字段中是一个字符串。如果您可以定义SolrDocument,则可以改进此答案并确认/拒绝假设。

于 2013-09-08T12:31:23.347 回答