I'm trying to fill an existing table in my PDF. I found some examples on iText but they always create a new table and then fills it.
In my case I have already created a table and now I want to add rows to this.
Is it possible to do this?
I'm trying to fill an existing table in my PDF. I found some examples on iText but they always create a new table and then fills it.
In my case I have already created a table and now I want to add rows to this.
Is it possible to do this?
How-to-add-row-in-jtable may help you. Instead iText, You can print your table using Jtable's built in print method. Go to this link for more.
Thanks.