Bom pessoal seguinte tenho o seguintes resultados de uma consulta no banco.
Dados - 2010-07-14 06:47:35.078 - 256- Brahma - 0
Dados - 2010-07-14 07:47:35.078 - 256- Brahma - 0
Dados - 2010-07-14 08:47:35.078 - 256- Brahma - 0
int[] a = new int[es.length];
Date[] b = new Date[es.length];
String[] c = new String[es.length];
Long[] d = new Long[es.length];
for (int i = 0; i < es.length; i++) {
System.out.println("Dados - " + es[i].getDateinc() + " - " + es[i].getPulse() + "- "
+ es[i].getDescription() + " - " + es[i].getIdEvent());
a[i] = es[i].getPulse();
b[i] = es[i].getDateinc();
c[i] = es[i].getDescription();
d[i] = es[i].getIdEvent();
parameters.put("date", b[i]);
parameters.put("pulse", a[i]);
parameters.put("desc", c[i]);
parameters.put("event", d[i]);
jp = JasperFillManager.fillReport("RelatorioDiario.jasper", parameters);
}
JasperViewer.viewReport(jp, false);
Dados - 2010-07-14 08:47:35.078 - 256- Brahma - 0
Alguém ai sabe ou tem alguma dica de como resolver isso?