tags:

views:

51

answers:

2

Hi all,

Is there any jsp tag library that can perform simple excel editing on web?

A: 

JExcel gives you excel editing in Java. From this it shouldn't be too hard to roll your own JSP tags. This isn't exactly what you wanted, but no-one else had answered.

Nick Fortescue
+1  A: 

Apache POI seems to be the other common way of doing something similar. Here is a web page with some example code.

Nick Fortescue