javaweb 导出excel需要哪些jar包

 我来答
Vcpopsw
2016-06-12 · TA获得超过977个赞
知道小有建树答主
回答量:650
采纳率:0%
帮助的人:232万
展开全部
java导出Excel需要用到poi的jar包,
// 第一步,创建一个webbook,对应一个Excel文件
HSSFWorkbook wb = new HSSFWorkbook();
// 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
HSSFSheet sheet = wb.createSheet("学生表一");
// 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
HSSFRow row = sheet.createRow((int) 0);
// 第四步,创建单元格,并设置值表头 设置表头居中
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式

HSSFCell cell = row.createCell((short) 0);
cell.setCellValue("学号");
cell.setCellStyle(style);
cell = row.createCell((short) 1);
cell.setCellValue("姓名");
cell.setCellStyle(style);
cell = row.createCell((short) 2);
cell.setCellValue("年龄");
cell.setCellStyle(style);
cell = row.createCell((short) 3);
cell.setCellValue("生日");
cell.setCellStyle(style);

// 第五步,写入实体数据 实际应用中这些数据从数据库得到,
List list = CreateSimpleExcelToDisk.getStudent();

for (int i = 0; i < list.size(); i++)
{
row = sheet.createRow((int) i + 1);
Student stu = (Student) list.get(i);
// 第四步,创建单元格,并设置值
row.createCell((short) 0).setCellValue((double) stu.getId());
row.createCell((short) 1).setCellValue(stu.getName());
row.createCell((short) 2).setCellValue((double) stu.getAge());
cell = row.createCell((short) 3);
cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu
.getBirth()));
}
// 第六步,将文件存到指定位置
try
{
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
}
catch (Exception e)
{
e.printStackTrace();
}
}
sky不用太多sky
高粉答主

2018-04-17 · 醉心答题,欢迎关注
知道大有可为答主
回答量:1082
采纳率:97%
帮助的人:47.4万
展开全部

java导出Excel需要用到poi的jar包,

// 第一步,创建一个webbook,对应一个Excel文件  

HSSFWorkbook wb = new HSSFWorkbook();  

// 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet  

HSSFSheet sheet = wb.createSheet("学生表一");  

// 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short  

HSSFRow row = sheet.createRow((int) 0);  

// 第四步,创建单元格,并设置值表头 设置表头居中  

HSSFCellStyle style = wb.createCellStyle();  

style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式  

HSSFCell cell = row.createCell((short) 0);  

cell.setCellValue("学号");  

cell.setCellStyle(style);  

cell = row.createCell((short) 1);  

cell.setCellValue("姓名");  

cell.setCellStyle(style);  

cell = row.createCell((short) 2);  

cell.setCellValue("年龄");  

cell.setCellStyle(style);  

cell = row.createCell((short) 3);  

cell.setCellValue("生日");  

cell.setCellStyle(style);  

// 第五步,写入实体数据 实际应用中这些数据从数据库得到,  

List list = CreateSimpleExcelToDisk.getStudent();  

for (int i = 0; i < list.size(); i++)  

{  

row = sheet.createRow((int) i + 1);  

Student stu = (Student) list.get(i);  

// 第四步,创建单元格,并设置值  

row.createCell((short) 0).setCellValue((double) stu.getId());  

row.createCell((short) 1).setCellValue(stu.getName());  

row.createCell((short) 2).setCellValue((double) stu.getAge());  

cell = row.createCell((short) 3);  

cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu  

.getBirth()));  

}  

// 第六步,将文件存到指定位置  

try  

{  

FileOutputStream fout = new FileOutputStream("E:/students.xls");  

wb.write(fout);  

fout.close();  

}  

catch (Exception e)  

{  

e.printStackTrace();  

}  

}

微软的OFFICE是最为流行的办公软件,主要有OFFICE2010和OFFICE2007两个版本。Office 2000是第三代办公处理软件的代表产品,可以作为办公和管理的平台,以提高使用者的工作效率和决策能力。Office 2000中文版有4种不同的版本:标准版、中小企业版、中文专业版和企业版。

在Office 2000中各个组件仍有着比较明确的分工:一般说来,Word主要用来进行文本的输入、编辑、排版、打印等工作;Excel主要用来进行有繁重计算任务的预算、财务、数据汇总等工作;PowerPoint主要用来制作演示文稿和幻灯片及投影片等;Access是一个桌面数据库系统及数据库应用程序;Outlook是一个桌面信息管理的应用程序;FrontPage主要用来制作和发布因特网的Web页面。

Microsoft Office XP是微软有史以来所发行的Office版本中最重要的版本,而且也被认为是迄今为止功能最强大、最易于使用的Office产品。新版Office放弃了以往以产品发布年命名的惯例!产品名称中的XP,是英文Experience(体验)的缩写,代表着新版Office在包容覆盖广泛设备的Web服务之后,将给用户带来丰富的、充分扩展的全新体验。

除核心的 Office XP 程序 — Microsoft Word、Excel、Outlook和 PowerPoint— 外,Office XP 专业版 中包含 Microsoft Access 2002,它是 Office XP 数据库解决方案,可帮助用户存储、访问和分析数据。

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
pieryon
2016-05-30 · 知道合伙人数码行家
pieryon
知道合伙人数码行家
采纳数:14411 获赞数:166867
获取软件设计师高级职称 万达金融最佳创新奖

向TA提问 私信TA
展开全部
用poi-3.9.jar还有logging-commong.jar log4j.jar
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式