开发者

Groovy - writing and formatting excel 2010

开发者 https://www.devze.com 2023-03-08 18:48 出处:网络
What are th options for working with an excel workbook from within a groovy (java) environment?We would like to be able to use the following features

What are th options for working with an excel workbook from within a groovy (java) environment? We would like to be able to use the following features

  1. add sheets
  2. add cells: headings and data
  3. format columns, rows, cells

and potentially

  1. form pivot tables
  2. copy the pivot table by value
  3. paste clipboard by value on another screen

Essentially this will allow us to forma pivot table but remove the underlying data from the worksheet.

开发者_Go百科

Thoughts? Thanks in advance.


Try apache poi. Can definitely perform your first list of requirements. I have used this api a good bit. If you have any questions, please feel free to ask.


Several Java libraries are available to handle the requirements you're looking for:

  • Apache POI
  • OpenOffice API
  • JExcelAPI
  • Jacob
  • ...

Not sure which one can easily handle pivot tables.

Good luck with your project! Wim


This page describes some more Groovy-specific options, but my recommendation would be to use Apache POI, either from Java or Groovy

0

精彩评论

暂无评论...
验证码 换一张
取 消