在 JUNG 中导入 GraphML 文件
我是 JUNG 的新手,谁能告诉我如何将 GraphML 导入到 JUNG 中。
I am new to JUNG, can any one show me how to import a GraphML to JUNG.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我是 JUNG 的新手,谁能告诉我如何将 GraphML 导入到 JUNG 中。
I am new to JUNG, can any one show me how to import a GraphML to JUNG.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我不确定您是否正在使用数据库,但如果您正在使用数据库,那么使用 Neo4J 就非常容易。 Neo4J 支持从 .graphml 文件导入/导出。完成所有操作后,您可以使用蓝图将 Neo4J 数据库连接到 JUNG。不超过 2 行代码:
其中 gds 是 Neo4J 中的 GraphDatabaseService 对象。就像我说的,非常简单,您可以想象应用程序背后有强大的图形数据库的可能性。
I'm not sure if you're working with a database, but if you are this is very easy with Neo4J. Neo4J supports import/export from .graphml files. Once you have everything done, you can hook up your Neo4J database to JUNG using blueprints. It takes no more than 2 lines of code:
In which gds is the GraphDatabaseService object from Neo4J. Like I said, very easy, and you can imagine the possibilities with a powerful graph database behind your application.