In my java project I'm using graphs with this library "graphstream".
I need to save my graph in a type file "Graphviz Dot", i.e.: nodes, edges, node attributes, edge attributes. I usually do in this way to save my graph in the file:
Graph graph = new MultiGraph(strId, strictChecking, autoCreate);
// create nodes, edges, node attributes, edge attributes...
FileSinkDOT fs = new FileSinkDOT();
fs.writeAll(graph, filePath);
Problem: When I open or load the file, I can't see edge attributes. Anyone knows "graphstream" and knows can I save this file?
Thank you for all your assistance.