How can I create a Excel Table using Java?
I am using JExcel for creating an excel document. I want to create a Excel table in Excel document using JAVA. I have populated the rows and columns in cells, I could not able to create Excel 开发者_开发问答table and populate data into Excel Table
Use Apache POI, it has very good support for all types of Excel manipulation.
Very limited info but being thirsty for votes I will take a stab
Tables in excel are nothing but cells with boarders around them . Once you have data in your cells you use jxl.format.BorderLineStyle to create boarder around them and that would be your table . Simple :)
精彩评论