Re: [jgrapht-users] Load graph from file
Brought to you by:
barak_naveh,
perfecthash
From: John V. S. <js...@gm...> - 2009-03-11 20:35:11
|
Francesco Cioffi wrote: > Hi guys, > > I'm new to jgrapht and I would like to use as graph library in my Project. > > I must create a graph, save it in a file, and then reload it for some purpose. > > I have found some utilities for exporting but I don't found utilities > for load a graph from a file. > > > Can you suggest me, how can I do that? Right, we currently only have exporters, without importers. However, most JGraphT data structures implement Serializable, so that is one option for persistence, although I personally am not a big fan of it due to issues like incompatibilities during migration to newer versions. JVS |