1

在我的 java 项目中,我使用带有这个库“ graphstream ”的图形。

我需要将我的图形保存在类型文件“Graphviz Dot”中,即:节点、边、节点属性、边属性。我通常以这种方式将我的图形保存在文件中:

Graph graph = new MultiGraph(strId, strictChecking, autoCreate);
// create nodes, edges, node attributes, edge attributes...
FileSinkDOT fs = new FileSinkDOT();
fs.writeAll(graph, filePath);

问题:当我打开或加载文件时,我看不到边缘属性。任何人都知道“graphstream”并且知道我可以保存这个文件吗?

感谢您的所有帮助。

4

1 回答 1

0

现在应该解决这个问题。检查每晚构建

于 2015-02-13T09:31:52.807 回答