From: rima a. <rim...@ho...> - 2012-06-25 19:37:01
|
Hey Ernst! This is the part of code i added to export to .dot format: DOTExporter dOTExporter = new DOTExporter(); File file = new File("flight_DOT"); Writer fileWriter = null; try { fileWriter = new BufferedWriter(new FileWriter (file)); } catch (IOException e) { throw new RuntimeException(e); } dOTExporter.export(fileWriter, g); So what lines of code do I have to add exactly to export vertex and edges attributes? -- View this message in context: http://jgrapht-users.107614.n3.nabble.com/Using-GML-Exporter-to-export-a-java-file-to-a-GML-file-tp4024703p4024713.html Sent from the jgrapht-users mailing list archive at Nabble.com. |