Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要为提供的数据构建 Graphson 格式,我已经完成了该操作,现在我的问题是,我如何像在 yEd for graphml 中那样可视化graphson。A)是否有任何工具可以执行此操作?B)如果没有,那么我是否需要进行任何更改才能在任何工具中对其进行可视化?
如果您有 GraphSON,那么您可以将其读入 TinkerGraph 并将其写为 GraphML。
Graph graph = TinkerGraph.open(); graph.io(IoCore.graphson()).readGraph("tinkerpop-modern.json"); graph.io(IoCore.graphml()).writeGraph("tinkerpop-modern.xml")