-1

I want to develop a java desktop application that takes some inputs from the user and store it in a database. After that, when user clicks on a button (say display) it displays the information, entered by him earlier, in a flowchart like format.

Can I display that information in the form of flowcharts?

Vlad Gudim
  • 23,397
  • 16
  • 69
  • 92
user241426
  • 77
  • 4
  • 9

4 Answers4

2

You can try out JGraph

Santosh Gokak
  • 3,393
  • 3
  • 22
  • 24
1

You might want to take a look at yEd. It stores drawings in XML format that can be very easily emulated based on your data. We've used this approach in the past and it worked like a treat.

If you need the same functionality on the back-end, just take a look at their yFiles library.

Vlad Gudim
  • 23,397
  • 16
  • 69
  • 92
0

You also could look at yWorks ( http://www.yworks.com/en/index.html ), another graphing library for java and .net (but a $$$ commercial product).

I like prefuse ( http://prefuse.org/ ) for graphs, even they stopped active development for the java lib a while ago, but you might need to do more coding with it to get a flowchart implementation.

javadude
  • 1,763
  • 1
  • 19
  • 38
0

You can use a drawing library for that. For example JFDraw.

Pablo Santa Cruz
  • 176,835
  • 32
  • 241
  • 292