excel导出 jxl.jar包
导入jxl.jar包, 代码如下:
package com.gree;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.sql.PreparedStatement;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale; import javax.servlet.ServletOutputStream;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletRequest; import jxl.Workbook;
import jxl.format.Colour;
import jxl.format.UnderlineStyle;
import jxl.write.Label;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import jxl.write.biff.RowsExceededException;
public class CreateExcel { public void createxcel(HttpServletResponse res,HttpServletRequest req) throws Exception{ OutputStream os=null;
WritableWorkbook wwb=null; ConnDB db=new ConnDB();
String str="select * from user";
ArrayList<Student> list=db.getList(str);
try {
java.text.SimpleDateFormat df = new java.text.SimpleDateFormat("yyyy-MM-dd");
String today = df.format(new java.util.Date());
String fileName="改模时间报表-"+today;
//System.out.println(fileName);
fileName=new String(fileName.getBytes("gb2312"), "ISO8859_1");
//System.out.println(fileName);
HttpServletResponse response=res;
HttpServletRequest request=req; response.reset();
response.setContentType("APPLICATION/OCTET-STREAM");
if (request.getHeader("User-Agent").indexOf("MSIE 5.5") != -1) { // MS
response.setHeader("Content-Disposition", "filename="+fileName+".xls");
} else {
response.addHeader("Content-Disposition","attachment;filename="+fileName+".xls");
} /**/
os = response.getOutputStream();
wwb = Workbook.createWorkbook(os);
WritableSheet sheet = wwb.createSheet("sheet1", 0);
jxl.write.WritableCell cell = null; WritableFont wf = new WritableFont(WritableFont.ARIAL,12,WritableFont.NO_BOLD,false,
UnderlineStyle.NO_UNDERLINE,Colour.BLUE);
WritableCellFormat formatH = new WritableCellFormat(wf);
formatH.setAlignment(jxl.format.Alignment.CENTRE); cell = new Label(0, 0,"用户表", formatH);
sheet.addCell(cell);
sheet.mergeCells(0,0,14,0); formatH = getFormat("BOLD", 9, Colour.BLACK);
formatH.setAlignment(jxl.format.Alignment.CENTRE);
formatH.setBorder(jxl.format.Border.ALL,jxl.format.BorderLineStyle.THIN); WritableCellFormat format = getFormat("NOBOLD", 9, Colour.BLACK);
//format.setAlignment(jxl.format.Alignment.LEFT);
format.setBorder(jxl.format.Border.ALL,jxl.format.BorderLineStyle.THIN);
//
cell = new Label(0, 1,"名字", formatH);
sheet.addCell(cell);
cell = new Label(1, 1,"密码", formatH);
sheet.addCell(cell);
cell = new Label(2, 1,"最后登录时间", formatH);
sheet.addCell(cell); /**/ for(int i=0;i<list.size();i++){ cell = new Label(0, i+2, list.get(i).getName(), format);
sheet.addCell(cell);
cell = new Label(1, i+2, list.get(i).getPassword(), format);
sheet.addCell(cell);
cell = new Label(2, i+2, list.get(i).getLastlogintime(), format);
sheet.addCell(cell); sheet.setColumnView(0,10);
sheet.setColumnView(1,20);
sheet.setColumnView(2,20); } wwb.write(); wwb.close();
os.close();
response.setStatus(response.SC_OK);
response.flushBuffer();
} catch (RowsExceededException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (WriteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} } WritableCellFormat getFormat(String style, int size, Colour color)
{
WritableFont wfc = null;
if("BOLD".equals(style))
wfc = new WritableFont(WritableFont.ARIAL, size, WritableFont.BOLD, false, UnderlineStyle.NO_UNDERLINE, color);
else
if("NOBOLD".equals(style))
wfc = new WritableFont(WritableFont.ARIAL, size, WritableFont.NO_BOLD, false, UnderlineStyle.NO_UNDERLINE, color);
return new WritableCellFormat(wfc);
} }
index.jsp中代码如下,创建该对象并 调用createxcel方法导出excel表格
<%
int opt; if(request.getParameter("opt")==null) opt=0; else opt=Integer.parseInt(request.getParameter("opt"));
if(opt==1){ CreateExcel excel=new CreateExcel();
excel.createxcel(response, request); }
else{ %> <a href="index.jsp?opt=1">导出excel表格</a>
<a href="importexcel.jsp">导入excel表格</a>
<%} } %>
excel导出 jxl.jar包的更多相关文章
- Java使用jxl.jar包写Excel文件的最适合列宽问题基本实现
以前用jxl.jar包,读写过Excel文件.也没有注意最适合列宽的问题,但是jxl.jar没有提供最适合列宽的功能,上次用到写了一下,可以基本实现最适合列宽. 注意,这个只是基本可以实现,基本针对中 ...
- Excel文件按照指定模板导入数据(用jxl.jar包)
本文中的方法只适合Excel2003,要读取Excel2007最好使用poi.jar,据说poi.jar还在更新,jxl.jar已经不更新了,处理Excel文件的读写问题最好还是学习poi.j ...
- idea中如何将单个java类导出为jar包文件?
idea作为一个java开发的便利IDE工具,个人是比较喜欢的,今天来探索个小功能: 导出单个类文件为jar包! 偶有这种需求,就是某个类文件独立存在,但是需要将其导出为jar,供别人临时使用,或者 ...
- Java项目导出为jar包+导出第三方jar包+使用命令行调用+传参
Java项目导出为jar包+导出第三方jar包+使用命令行调用+传参 一.打包 情况1:不需要向程序传参数,并且程序没有使用第三方jar包 Eclipse上导出jar: 然后选择一个java文件作为入 ...
- 关于IDEA导出项目jar包/runnable jar
将项目导出为jar包分为 runnable jar 与 普通jar包 一.导出为普通jar包 该jar包中只有项目源代码, java -cp wordcount.jar 用来运行普通jar包 1.打开 ...
- 使用poi导出Excel表格,jar包冲突
HTTP Status 500 – Internal Server Error Type Exception Report Message Handler processing failed; nes ...
- 在Intellij IDEA中使用Maven的方式将项目导出为jar包
前言:由于项目使用maven管理方式,所以在未发布版本的时候,就需要将项目打成jar包,供本地调试使用.注意在使用本地jar包的时候,需要将pom文件中相关jar包的依赖屏蔽,再将jar包加入项目中. ...
- Eclipse 导出的jar包 , 使用后提示重复定义?
导出jar包时,一般会指定一个路径,导出的完整jar包就会自动放到那个指定路径里. 后来我发现那个指定路径的jar包比bin文件夹里面的jar包大,于是就用bin文件夹里面的jar包代替来试试,果然不 ...
- maven子项目导出成jar包及运行
第一步:选这idea右侧栏的maven projects 第二步:选中需要打包成jar包的项目下的lifecycle 第三步:选中package 第四步:点击开始导出 第五步:使用winRAR打开ja ...
随机推荐
- 使用jsp读取TXT格式文件
<%@page import="java.io.BufferedReader"%> <%@page import="java.io.FileReader ...
- hdu 4289 网络流拆点,类似最小割(可做模板)邻接矩阵实现
Control Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Sub ...
- win 8系统下如何安装搭建python
python的环境搭建除了python本身,还有Aptana和pip的安装.Aptana提供了更好的集成开发环境,pip主要用于安装第三方的包. 具体安装流程可参考以下两篇文章: InSky关于安装p ...
- 【转】iTween for Unity
http://www.cnblogs.com/zhaoqingqing/p/3833321.html?utm_source=tuicool&utm_medium=referral 你曾经在你的 ...
- [luogu1357] 花园 [dp+矩阵快速幂]
题面: 传送门 思路: 把P形花圃记录为0,C形记录为1,那么一段花圃就可以状态压缩成一个整数 那么,我们可以有这样的状压dp: dp[i][S]表示前i个花圃,最后m个的状态为S的情况 如果这是一条 ...
- wooyun
转自:http://zone.wooyun.org/content/19128 tencent.com baidu.com sina.com.cn sohu.com discuz.net rising ...
- 关于微信小程序post请求数据的坑
在post请求数据的时候,发现数据没有发送给后台,需要在请求头里加"Content-Type": "application/x-www-form-urlencoded&q ...
- 汇编中的 imul 指令
1.这是整形乘法指令,无论是 unsigned int 还算是 signed int 实际上指令都是进行相同的运算,只不过最终的结果是由程序中的类型来做相应的解读 2.imul 指令实际上不会发生 o ...
- JS add script tag to dynamically call script
//IE: var script = document.createElement("script"); script.setAttribute("type", ...
- vmware tools安装过程
每次通过vmware安装Ubuntu的时候,总是会多多少少出点问题.好容易披荆斩棘把镜像安好了,然而屏幕却只有小小一个,不能显示大屏,我就知道肯定是缺少了vmware tools.于是点击左上方菜单中 ...