Reputation: 527
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
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