Blog信息 |
blog名称: 日志总数:1304 评论数量:2242 留言数量:5 访问次数:7597232 建立时间:2006年5月29日 |

| |
[Spring]在spring应用中生成excel, pdf 软件技术, 电脑与网络
lhwork 发表于 2006/6/15 11:17:19 |
参考spring-framework-1.2.5\samples\countries1. install1). c:\> ant all2). copy "dist\countries.war" to "tomat_home\webapps\"3). http://localhost:8080/countries
2. Getting Started1). Controller
500)this.width=500'>String excelView = "countries_excelView";500)this.width=500'>500)this.width=500'>public ModelAndView handleExcel(HttpServletRequest request, HttpServletResponse response) throws ServletException 500)this.width=500'>{500)this.width=500'> RefreshablePagedListHolder listHolder =500)this.width=500'> (RefreshablePagedListHolder) request.getSession(true).getAttribute(COUNTRIES_ATTR);500)this.width=500'>500)this.width=500'> if (listHolder == null) 500)this.width=500'>{500)this.width=500'> throw new ServletException("No countries list found in session");500)this.width=500'> }500)this.width=500'> return new ModelAndView(this.excelView, "countries", listHolder);500)this.width=500'> } 2). Excel View
500)this.width=500'>500)this.width=500'>public class CountriesExcelView extends AbstractExcelView 500)this.width=500'>{500)this.width=500'> 500)this.width=500'>500)this.width=500'>500)this.width=500'>}3). properties
500)this.width=500'>countries_excelView.class=org.springframework.samples.countries.web.CountriesExcelView3. 深入了解org.springframework.web.servlet.view.document.AbstractExcelView (by POI)org.springframework.web.servlet.view.document.AbstractJExcelView (by JExcelApi)参考spring-framework-1.2.5\test\org\springframework\web\servlet\view\document |
|
|