网络图可视化工具
我需要获得网络图的二维图片。我知道拓扑。有什么工具可以帮助我这样做吗?
I need to get a 2d picture of a network graph. I know the topology. Is there any tool which will help me do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Graphviz
Graphviz
有一些用 Java 编写的开源工具 这里。
There are some open source tools written in Java here.
是的,graphviz 是事实上的工具。您无需再寻找。只需使用您选择的编程语言生成一个描述您的网络的点文件即可。您可以使用 graphviz 来进行图形的编程定义,但这是另一个问题。
点文件既漂亮又简单,任何人都可以编写。
Yep graphviz is the de facto tool for this. You do not need to look any further. Just use your programming language of choice to spit out a dot file which describes your network. You can drop to programatic definition of graphs using graphviz but that is another issue.
Dot files are nice and simple, anyone could write one.