我正在尝试将GraphResultSet对象转换为类似于datastax studio返回的JSON格式。我正在尝试使用Graphson。是否有任何示例代码将结果对象转换为JSON?
我从tikerpop蓝图中尝试了以下内容,但它无法正常工作
List<GraphNode> gf=((GraphResultSet) resultSet).all();
Vertex v = (Vertex) gf.get(0).asVertex();
JSONObject json = null;
try {
json = GraphSONUtility.jsonFromElement((Element) v,getElementPropertyKeys((Element) v, false), GraphSONMode.COMPACT);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我从dse得到一个GraphResultSet对象,它有顶点和边。我想以JSON格式输出。
答案 0 :(得分:1)
现在没有直接的方法将DSE驱动程序图形对象转换为JSON。但是,如果您正在寻找简单的JSON响应,那么如果使用DSE driver 1.5.0,您可以将驱动程序配置为使用GraphSON1。然后只输出GraphNode
的字符串表示形式:
DseCluster dseCluster = DseCluster.builder().addContactPoint("127.0.0.1")
.withGraphOptions(
new GraphOptions()
.setGraphName("demo")
// GraphSON version is set here:
.setGraphSubProtocol(GraphProtocol.GRAPHSON_1_0)
)
.build();
DseSession dseSession = dseCluster.connect();
// create query
GraphStatement graphStatement = [.....];
GraphResultSet resultSet = dseSession.executeGraph(graphStatement);
for (GraphNode gn : resultSet) {
String json = gn.toString();
}
答案 1 :(得分:0)
你不能直接在com.datastax.driver.dse.graph.DefaultVertex
和&amp; com.tinkerpop.blueprints.Element
。
DSE Java驱动程序中有GraphSONUtils类(src)应该能够处理这些转换。但是因为它在“内部”包中,我预计任何时候都可能发生变化。