Hello,
I would like to ask that, I have a jsp page and I get retrieve the data to jsp table by using jspBeans.Now I want to import this data to csv. Could you help me please. this is my jsp page:
<c:forEach var="amlist" begin="0" end="${aml.amlist.size()-1}" step="1">
${'data.addRows( [[\'rev\','}
${aml.amlist.get(amlist).sfactoryMethod}${',' }
${aml.amlist.get(amlist).sprototype}${',' }
${aml.amlist.get(amlist).ssingleton}${',' }
${aml.amlist.get(amlist).sadapter}${',' }
${aml.amlist.get(amlist).scomposite}${',' }
${aml.amlist.get(amlist).sdecorator}${',' }
${aml.amlist.get(amlist).sobserver}${',' }
${aml.amlist.get(amlist).sstateStrategy}${',' }
${aml.amlist.get(amlist).stemplateMethod}${',' }
${aml.amlist.get(amlist).svisitor}${',' }
${aml.amlist.get(amlist).sproxy}${',' }
${aml.amlist.get(amlist).sproxy2}${']]);'}
</c:forEach>
import jspBeans to csvBlue April 25, 2012 at 10:20 PM
Hello, I would like to ask that, I have a jsp page and I get retrieve the data to jsp table by using jspBeans.Now I want to import this data to csv. Could you help me please. this is my jsp page: <c:forEach var="amlist" begin="0" end="${aml.amlist.size()-1}" step="1"> ${'data.addRows( [[\'rev\','} ${aml.amlist.get(amlist).sfactoryMethod}${',' } ${aml.amlist.get(amlist).sprototype}${',' } ${aml.amlist.get(amlist).ssingleton}${',' } ${aml.amlist.get(amlist).sadapter}${',' } ${aml.amlist.get(amlist).scomposite}${',' } ${aml.amlist.get(amlist).sdecorator}${',' } ${aml.amlist.get(amlist).sobserver}${',' } ${aml.amlist.get(amlist).sstateStrategy}${',' } ${aml.amlist.get(amlist).stemplateMethod}${',' } ${aml.amlist.get(amlist).svisitor}${',' } ${aml.amlist.get(amlist).sproxy}${',' } ${aml.amlist.get(amlist).sproxy2}${']]);'} </c:forEach>
Post your Comment