Hi,
i have report data in arraylist
ArrayList al = new ArrayList();
HashMap hm = new HashMap();
hm.add("01/01/2005");
hm.add("one");
hm.add("two");
hm.add("test");
al.add(hm);
hm=new HashMap();
hm.add("01/01/2005");
hm.add("three");
hm.add("four");
hm.add("test");
al.add(hm);
hm=new HasmMap();
hm.add("01/02/2005");
hm.add("five");
hm.add("six");
hm.add("test");
al.add(hm);
now i want to display this report datewise
01/01/2005
one two
three four
01/02/2005
five six
Is there any way that i can use
struts tag and display in this format or i have to use scriptlet only. i know how to iterate but i dont how to store date to compare...
Thanks in Advance