Calling PlantUML from Java - Path to dot.exe (Graphiz)

0 votes
asked Mar 20, 2013 in To be sorted by anonymous
In the command line call, I can specify with the parameter "-graphvizdot" the path to the dot.exe from Graphiz. Is this also possible when calling PlantUML directly from Java?

1 Answer

0 votes
answered Mar 23, 2013 by anonymous

Ah, I found out a way by myself after studying the PlantUML sources smiley.

With the help of the method:

OptionFlags.getInstance().setDotExecutable(String path);

it is possible to set the path.

...