简体   繁体   English

是否有用于Java概念图可视化的库?

[英]Is there a library for Java Conceptual Graph Visualization?

I need to visualize conceptual graph by using Java. 我需要使用Java可视化概念图。 and I'm wondering if there any library that i can use to make my work easier? 我想知道是否可以使用任何库来简化我的工作?

Any advice? 有什么建议吗?

jgraph jgraph

AbuGraph AbuGraph

Prefuse it seems the link is not working now, try later. 预先预言链接似乎无法正常工作,请稍后再试。

JGraphT JGraphT

Some of those libraries let you change the shape of the nodes, you can also add images instead of basic shapes. 其中一些库可让您更改节点的形状,还可以添加图像而不是基本形状。 For the conceptual graph I think prefuse will do the job. 对于概念图,我认为可以先做些事。

JGraphT is a free Java graph library that provides mathematical graph-theory objects and algorithms. JGraphT 是一个免费的Java图形库,它提供数学图形理论对象和算法。 JGraphT supports various types of graphs including: JGraphT支持各种类型的图,包括:

  • directed and undirected graphs. 有向图和无向图。
  • graphs with weighted / unweighted / labeled or any user-defined edges. 带有加权/未加权/标记或任何用户定义的边的图形。
  • various edge multiplicity options, including: simple-graphs, multigraphs, pseudographs. 各种边多重性选项,包括:简单图,多图,伪图。
  • unmodifiable graphs - allow modules to provide "read-only" access to internal graphs. 不可修改的图-允许模块提供对内部图的“只读”访问。
  • listenable graphs - allow external listeners to track modification events. 可听图-允许外部侦听器跟踪修改事件。
  • subgraphs graphs that are auto-updating subgraph views on other graphs. 子图图,这些图是自动更新其他图上的子图视图的图。
  • all compositions of above graphs. 以上图表的所有组成。

    http://jgrapht.sourceforge.net/ http://jgrapht.sourceforge.net/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM