How can we generate flow chart diagram in IntelliJ IDEA from Java code which is editable?
Asked Answered
V

1

8

I am searching for a tool (preferably works offline) but couldn't find any.how can generate flow chart. i.e flow chart for a method or for the main method of the class.

I am aware of Sequence diagrams and its plugin for IntelliJ. but I am looking searching for a tool which generates flow charts instead of the sequence.

Valerivaleria answered 24/4, 2019 at 11:26 Comment(1)
Has anyone found any tools yet?. There is one lucrative tool named as findtheflow but I cannot make it work either in standalone mode or intellij.Marcellus
P
13

You can try the SequenceDiagram for IntelliJ IDEA plugin.
It generates simple sequence diagrams which are a visible representation of code flows (via the method calls).

As for flow charts specifically (unfortunately I did not find an IntelliJ solution):
You can try the online code2flow which is a simple `paste code and edit the generated chart' solution. Obviously, it is not a part of IntelliJ but it will get the job done.
Another option is the FateSoft application, which generates flow charts for multiple programming languages. Simply install the tool on your workstation and parse the desired code in the app, while selecting the start and end line of code from which to generate the flow chart.


References:

Pathway answered 24/4, 2019 at 11:47 Comment(1)
thank you. but I am searching for a tool which generates a flow chart.Valerivaleria

© 2022 - 2024 — McMap. All rights reserved.