开发者

Import for Java or Other Languages that will Generate Flowcharts, Given Data

开发者 https://www.devze.com 2023-01-04 20:43 出处:网络
I\'m trying to create an automated \"spider diagram\" like the ones created by VUE: h开发者_JS百科ttp://vue.tufts.edu/

I'm trying to create an automated "spider diagram" like the ones created by VUE:

h开发者_JS百科ttp://vue.tufts.edu/

VUE is open source, but the issue is that you create the maps in the program. I want to have a program that will pull the data from an excel sheet and display the map automatically when run.

I know how to open and parse the data in files, so reading the file isn't the issue. I can program the behavior of how I want everything to "link up", but I just don't want to have to create an applet, then develop the software from scratch.

If I made anything unclear, let me know. I'm very tired today, so it's difficult to stay focused very long.

Many thanks!

-Justian


JGraph is a library to do that. You give it the node and edges and it figures out how to present them in a meaningful way. It is kind of like using graphviz but in Java.

For visualization of production runs we use graphviz out of process and show the images generated from that. It works fine, but a single process solution would be better.

Reading an excel as CSV should be straightforward. POI allows you to read directly the Excel files.

0

精彩评论

暂无评论...
验证码 换一张
取 消