JSP如何实现从数据库导出数据到Excel下载的方法

九月一到,就有了秋意,秋意在一个多雾的黎明溜来,到了炎热的下午便不见踪影。它踮起脚尖掠过树顶,染红几片叶子,然后乘着一簇飞掠过山谷离开。

本文实例讲述了JSP实现从数据库导出数据到Excel下载的方法。分享给大家供大家参考,具体如下:

关键代码:

<%@ page contentType="application/msexcel" %>
<%
  //response.setHeader("Content-disposition","inline; filename=videos.xls");
  response.setHeader("Content-disposition","attachment; filename=test.xls");
  //以上这行设定传送到前端浏览器时的档名为test.xls
  //就是靠这一行,让前端浏览器以为接收到一个excel档 
%>

简单测试例子:

<%@ page language="java" import="java.util.*,java.io.*" pageEncoding="GBK"%> 
<%@ page contentType="application/msexcel" %> 
<% 
  //response.setHeader("Content-disposition","inline; filename=videos.xls"); 
  response.setHeader("Content-disposition","attachment; filename=test.xls"); 
  //以上这行设定传送到前端浏览器时的档名为test.xls 
  //就是靠这一行,让前端浏览器以为接收到一个excel档  
%> 
<%@ page import="org.springframework.web.context.WebApplicationContext"%> 
<%@ page import="com.test.*"%> 
<%@ page import="org.springframework.web.context.support.WebApplicationContextUtils"%> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%> 
<% 
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext()); 
UserManager um = (UserManager) ctx.getBean("userManager"); 
 %> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html> 
 <head> 
  <base rel="nofollow noopener noreferrer" href="<%=basePath%>"> 
  <title>spring jdbc test</title> 
  <meta http-equiv="pragma" content="no-cache"> 
  <meta http-equiv="cache-control" content="no-cache"> 
  <meta http-equiv="expires" content="0">   
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
  <meta http-equiv="description" content="This is my page"> 
  <!-- 
  <link rel="stylesheet" type="text/css" rel="nofollow noopener noreferrer" href="styles.css"> 
  --> 
 </head> 
 <body> 
<br> 
<table border="1" width="100%"> 
<tr> <td>id</td> <td>name</td> 
  </tr> 
<% 
    List<User> users2=um.getUserList(); 
    for(int i=0;i<users2.size();i++) 
    { 
      int t_id2=users2.get(i).getId(); 
      String t_name2=users2.get(i).getName(); 
      %> 
      <tr> 
   <td><%=t_id2 %></td> <td><%=t_name2 %></td> 
  </tr> 
      <% 
    } 
 %> 
</table> 
 </body> 
</html> 

希望本文所述对大家JSP程序设计有所帮助。

本文JSP如何实现从数据库导出数据到Excel下载的方法到此结束。我不怕千万人阻挡,只怕自己投降。逆风的方向,更适合飞翔。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
JSP如何实现简单网页计算器

JSP动态如何实现web网页登陆和注册功能

JSP如何实现文件上传功能

SSM框架整合JSP中集成easyui前端ui项目开发示例详解

教你怎么用JSP统计网站访问人数