blaughli
blaughli

Reputation: 527

How to make file to be visualized in Excel

I've got a Groovy script that grabs the data I want out of a large text file. I want to make a tab-separated datafile with this script and then use the file for an Excel visualization. What is the best file type to create, and how do I create it in Groovy?

Thanks!

Upvotes: 0

Views: 111

Answers (1)

tim_yates
tim_yates

Reputation: 171084

Why not just write it out as tab separated file as you say?

Or you could use Apache POI and HSSF with a groovy builder or something...

Upvotes: 2

Related Questions