views:

51

answers:

1

I have a hashMap in java in terms of some keys which each key is indicating a flow. Then each value showing statics about each packet belongs to that flow.

What I need to do is, to draw graphs for each flow based on those values. for example:

Flow1: {[length, time],[],[],...}
Flow2: {[length, time],[length, time],[],...}

I need to plot them in Excel. Can anyone has the idea to give me some clues please?

A: 

Have you looked at Apache POI ?

Or the Java bindings for the Openoffice UNO ? (you run an instance of Openoffice and control it using Java)

Andre Holzner