I just started looking to the "Java Universal Network/Graph Framework" (JUNG) but could not find any tutorials which would help a beginner, guys i would appreciate if you could give me some good links

link|improve this question
feedback

4 Answers

There are not so many tutorials around about that framework in addition to the ones you can find through their website.

The best way I found to understand the framework has been to browse the examples that you can find inside jung-samples-x.y.z.jar. You can start from them also by copying and then try to adapt a specific example to your need..

link|improve this answer
feedback

My colleague and I have actually worked with JUNG extensively developing a graph visualization application. I'll be posting a few tutorials on my blog; mainly catering to the GraphML save and load functionalities, and other JUNG aspects not really documented well anywhere. My advice to you would be:

  1. Use a good IDE: We used Netbeans and it really took the load off looking for the JUNG library functions and their arguments to get our work done.

  2. Get this: tutorial http://www.grotto-networking.com/JUNG/ : This really helped us get started with JUNG.

  3. Spend time browsing the library source code or javadocs; just casual reading, you may stumble upon stuff you'll really need.

link|improve this answer
feedback

Have a look here, however it is very basic introduction:

http://farhad.arbabzadah.com/2011/09/graph-visualization-with-java-jung/

link|improve this answer
feedback

The JUNG website documentation page points to a tutorial, as well as the Javadoc.

http://jung.sourceforge.net/doc/index.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.