溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java中用POI實(shí)現(xiàn)將數(shù)據(jù)導(dǎo)出到Excel的方法

發(fā)布時(shí)間:2021-04-30 10:38:54 來(lái)源:億速云 閱讀:212 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)Java中用POI實(shí)現(xiàn)將數(shù)據(jù)導(dǎo)出到Excel的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

常用的java框架有哪些

1.SpringMVC,Spring Web MVC是一種基于Java的實(shí)現(xiàn)了Web MVC設(shè)計(jì)模式的請(qǐng)求驅(qū)動(dòng)類型的輕量級(jí)Web框架。2.Shiro,Apache Shiro是Java的一個(gè)安全框架。3.Mybatis,MyBatis 是支持普通 SQL查詢,存儲(chǔ)過程和高級(jí)映射的優(yōu)秀持久層框架。4.Dubbo,Dubbo是一個(gè)分布式服務(wù)框架。5.Maven,Maven是個(gè)項(xiàng)目管理和構(gòu)建自動(dòng)化工具。6.RabbitMQ,RabbitMQ是用Erlang實(shí)現(xiàn)的一個(gè)高并發(fā)高可靠AMQP消息隊(duì)列服務(wù)器。7.Ehcache,EhCache 是一個(gè)純Java的進(jìn)程內(nèi)緩存框架。

一、前言

數(shù)據(jù)導(dǎo)出為Excel在我們寫項(xiàng)目的過程中經(jīng)常用到

需要用到的jar包 poi-3.17.jar

二、具體實(shí)現(xiàn)步驟

//第一步創(chuàng)建一個(gè)webbook,對(duì)應(yīng)一個(gè)Excel文件
	HSSFWorkbook wb=new HSSFWorkbook();
	//第二步,在webbook中添加一個(gè)sheet,對(duì)應(yīng)Excel文件中的sheet
	HSSFSheet sheet=wb.createSheet("食物信息數(shù)據(jù)");
	//第三步,在sheet中添加表頭第0行
	HSSFRow row = sheet.createRow(0);
	//第四步,創(chuàng)建單元格,并設(shè)置表頭居中
	HSSFCellStyle style = wb.createCellStyle();
	style.setAlignment(HorizontalAlignment.CENTER);//居中格式
	HSSFCell cell = row.createCell(0);
	cell.setCellValue("編號(hào)");
	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("單價(jià)");
	cell.setCellStyle(style);
	
	cell=row.createCell((short)4);
	cell.setCellValue("庫(kù)存");
	cell.setCellStyle(style);
	
	//第五步,寫入實(shí)體數(shù)據(jù),從數(shù)據(jù)庫(kù)拿數(shù)據(jù)
	FoodController controller=new FoodController();
	List<Foods> foodsList = controller.foodsList(null, null);
	for (int i = 0; i < foodsList.size(); i++) {
		//創(chuàng)建單元格,并賦值
		row=sheet.createRow(i+1);
		Foods foods = foodsList.get(i);
		row.createCell((short)0).setCellValue(foods.getId());
		row.createCell((short)1).setCellValue(foods.getName());
		row.createCell((short)2).setCellValue(foods.getType());
		row.createCell((short)3).setCellValue(foods.getPrice());
		row.createCell((short)4).setCellValue(foods.getNum());
	}
	//第六步,下載Excel
	OutputStream out=null;
	out=response.getOutputStream();
	String fileName="食物信息.xls";
	response.setContentType("application/x-=msdownload");
	response.setHeader("Content-Disposition", "attachment; filename="
			+URLEncoder.encode(fileName, "UTF-8"));
	wb.write(out);

三、實(shí)現(xiàn)效果圖

導(dǎo)出成功后數(shù)據(jù)成功顯示

Java中用POI實(shí)現(xiàn)將數(shù)據(jù)導(dǎo)出到Excel的方法

關(guān)于“Java中用POI實(shí)現(xiàn)將數(shù)據(jù)導(dǎo)出到Excel的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI