Search code examples
javagraphpersistencejung

Is there a library that persists jung graphs from a datastore/database


I am looking for a way to persist jung graphs in a database or datastore. Is there a functionality in jung that I could use for this purpose? Maybe there is a library I could use?


Solution

  • What JUNG provides as of now is just the ability to save to GraphML, or to persist graphs to object files.

    You could use JUNGs GraphML capabilities to write the graph out to an XML file and then have that read in to a database of your choice.