Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

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)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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