gpt4 book ai didi

json - 将 ElasticSearch SearchResponse 对象转换为 JsonObject

转载 作者:行者123 更新时间:2023-11-29 02:54:54 26 4
gpt4 key购买 nike

我想将 elasticsearch 搜索结果转换为 Json 对象。我还没有找到任何合适的方法来直接转换。

SearchResponse response = client.prepareSearch(index).setExplain(true).execute().actionGet();

response->JSON Object.

有没有办法将 ElasticSearch 响应转换为 Json 对象?

最佳答案

在 Java 中,您可以直接将 SearchResponse 转换为 JSONObject。下面是方便的代码。

SearchResponse SR = builder.setQuery(QB).addAggregation(AB).get();

JSONObject SRJSON = new JSONObject(SR.toString());

关于json - 将 ElasticSearch SearchResponse 对象转换为 JsonObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46190070/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com