Build a Table from a `DataTable`

Contents
[ ]

Often your application will pull data from a database and store it in the form of a DataTable. You may wish to easily insert this data into your document as a new table and quickly apply formatting to the whole table.

Using Aspose.Words, you can easily retrieve data from a database and store it as a table:

  1. Create a new DocumentBuilder object on your Document.
  2. Start a new table using DocumentBuilder.
  3. If we want to insert the names of each of the columns from our DataTable as a header row then iterate through each data column and write the column names into a row in the table.
  4. Iterate through each DataRow in the DataTable:
    1. Iterate through each object in the DataRow.
    2. Insert the object into the document using DocumentBuilder. The method used depends on the type of the object being inserted e.g DocumentBuilder.writeln() for text and DocumentBuilder.insertImage() for a byte array which represents an image.
    3. At the end of processing of the data row also end the row being created by the DocumentBuilder by using DocumentBuilder.endRow().
  5. Once all rows from the DataTable have been processed finish the table by calling DocumentBuilder.endTable().
  6. Finally, we can set the desired table style using one of the appropriate table properties such as Table.getStyleIdentifier() to automatically apply formatting to the entire table. The following data in our DataTable is used in this example:

build-a-table-from-a-datatable-aspose-words-java-1

The following code example shows how to execute the above algorithm in Aspose.Words:

The method can then be easily called using your DocumentBuilder and data.

The following code example shows how to import the data from a DataTable and insert it into a new table in the document:

The table shown in the picture below is produced by running the above code.

build-a-table-from-a-datatable-aspose-words-java-2