将jsp页面中的Table导出到Excel

将jsp页面中的Table导出到Excel

新建一个jsp页面,excel.jsp

    pageEncoding="UTF-8"%>




Export to Excel - Demo


	
            <%
                for (int i = 0; i < 10; i++) {%>
            
            <%
                }
            %>
        
ID 文本内容 序列 序列222
<%=i%> 文本内容 <%=i%> <%=i*10%> <%=i * 20%>

向excel.jsp页面发送

    pageEncoding="UTF-8"%>

   

 

   
  
              
                  
                      
                        工作表标题  
                          
                              
                                  
                              
                          
                      
                  
              
          
  
 

Export to Excel - Demo


    <%
        String exportToExcel = request.getParameter("exportToExcel");
        if (exportToExcel != null
                && exportToExcel.toString().equalsIgnoreCase("YES")) {
            response.setContentType("application/vnd.ms-excel");
            response.setHeader("Content-Disposition", "inline; filename="
                    + "excel.xls");
 
        }
    %>
    
            <%
                for (int i = 0; i < 10; i++) {
            %>
            
            <%
                }
            %>
        
ID 文本内容 序列 序列222
<%=i%> 文本内容 <%=i%> <%=i*10%> <%=i * 20%>















<% if (exportToExcel == null) { %> 导出为Excel <% } %>

这样简单的导出Excel表格就做完了

你可能感兴趣的:(导入导出)