在我的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"并且知道我可以保存此文件吗?
感谢您的所有帮助。
现在应该可以修复此问题。检查夜间构建。