DynamicReports - DataSource filled only one column?

567 Views Asked by At

I got a small project that requires a DynamicReport. I got the the Report to get n- number of columns and n- number of rows but the problem is, the output only fills 1 column with all the data from the DataSource. How can I fix this?

public void raports(){

        //get table Data
        DefaultTableModel model = (DefaultTableModel) jTable1.getModel();
        int mColumns = model.getColumnCount();
        int mRows = model.getRowCount();
        String[] arrColumns = new String[mColumns];

        //store the column names into the array
        for(int i=0; i<mColumns; i++){
            arrColumns[i] = model.getColumnName(i);
        }

        JasperReportBuilder report = DynamicReports.report();//a new report
        TextColumnBuilder[] tcb = new TextColumnBuilder[mColumns];

        //create columns
        for (int i=0; i< mColumns; i++) {
            if(i==0){
                tcb[i] = Columns.column(arrColumns[i]+" hello"+i ,arrColumns[i],DataTypes.stringType()).setHorizontalAlignment(HorizontalAlignment.LEFT);
            }else if(i+1==mColumns){
                tcb[i] = Columns.column(arrColumns[i]+" hello"+i ,arrColumns[i],DataTypes.stringType()).setHorizontalAlignment(HorizontalAlignment.LEFT);
            }else{
                tcb[i] = Columns.column(arrColumns[i]+" hello"+i ,arrColumns[i],DataTypes.stringType());
            }

        }

        //create an empty datasource
        DRDataSource dataSource = new DRDataSource(arrColumns);

        //fill the datasource with information
        for (int i = 0; i < mRows; i++) {
            for (int j = 0; j<mColumns; j++){
                dataSource.add(model.getValueAt(i, j).toString());
            }
        }

        StyleBuilder boldStyle = stl.style().bold();  
        StyleBuilder titleStyle = stl.style(boldCenteredStyle)
                .setVerticalAlignment(VerticalAlignment.MIDDLE)
                .setFontSize(15);
        StyleBuilder boldCenteredStyle = stl.style(boldStyle)
                .setHorizontalAlignment(HorizontalAlignment.CENTER);
        StyleBuilder columnTitleStyle  = stl.style(boldCenteredStyle)
                .setBorder(stl.pen1Point())
                .setBackgroundColor(Color.LIGHT_GRAY);

        report
                .setColumnTitleStyle(columnTitleStyle)
                .highlightDetailEvenRows() 
                .columns(tcb)
                .setDataSource(dataSource)
                .title(
                    cmp.horizontalList()
                    .add(
                    cmp.image("C:\\Users\\Innocentus\\Documents\\NetBeansProjects\\JavaApplication9\\src\\seal.png").setFixedDimension(80, 80),
                    cmp.text("School Health \n Services").setStyle(titleStyle).setHorizontalAlignment(HorizontalAlignment.LEFT),
                    cmp.text("Patient List").setStyle(titleStyle).setHorizontalAlignment(HorizontalAlignment.RIGHT))
                    .newRow()
                    .add(cmp.filler().setStyle(stl.style().setTopBorder(stl.pen2Point())).setFixedHeight(10))
                )
                .pageFooter(cmp.pageXofY().setStyle(boldCenteredStyle))
                .pageFooter(Components.pageXofY());
        try {
            report.show();//show the report
            report.toPdf(new FileOutputStream("C:\\Users\\Innocentus\\Documents\\NetBeansProjects\\JavaApplication9\\src\\report.pdf"));//export the report to a pdf file
        } catch (DRException e) {
            e.printStackTrace();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

jTable:

+-----------------------------------+
|Title 1 |Title 2 |Title 3 |Title 4 |
+-----------------------------------+
|a       |b       |c       |d       |
|e       |f       |g       |h       |
|i       |j       |k       |l       |
|m       |o       |o       |p       |
+-----------------------------------+

Here is the Picture

1

There are 1 best solutions below

0
On

Your for loop for adding data to datasource is incorrect as it is clearly adding all values to a single column.Replace the for loop with this:

String[] arr = new String[mColumns];

for (int i = 0; i < mRows; i++) {
                for (int j = 0; j<mColumns; j++){
                    arr[j] = model.getValueAt(i, j).toString();

                }
                dataSource.add(arr);
            }

In the above code we are adding values of all columns of a row to a string array and we are adding that list of column values to datasource of that row.Hope this helps.