1. 程式人生 > >java代碼導出數據到Excel、js導出數據到Excel(三)

java代碼導出數據到Excel、js導出數據到Excel(三)

文件 servlet .net rii try use sss open list

jsp內容忽略,僅寫個出發按鈕:
<button style="width: 100px" onclick="expertExcel()" >JS導出Excel</button>&nbsp;&nbsp;&nbsp;
<button style="width: 100px" onclick="expertWord()" >JS導出Word</button>&nbsp;&nbsp;&nbsp;
<button style="width: 100px" onclick="getDataToExcel2()" >代碼導出</button>

<div class =‘main‘ id=‘main‘></div>
<div class =‘bottom‘ id=‘buttom12‘>
</div>

</div>
</body>
</html>
<script type="text/javascript">


//後臺彈出框式導出數據到Excel
function getDataToExcel2(){
var sssj = document.getElementById("time_ctrol").value;
var xtmc = document.getElementById("st").value;

xtmc = encodeURI(encodeURI(xtmc));
var requestURL = "./DataToExcel.jsp?type=getDataToExcel&sssj=" + sssj + "&xtmc=" + xtmc;
window.open(requestURL);
}

function createXMLHttpRequest(){
if (window.ActiveXObject) {
XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");
} else {
XMLhttpObject = new XMLHttpRequest();
}
return XMLhttpObject;
}








</script> //js導出EXCEL
<script type="text/javascript">
function expertExcel(){
var oXL = new ActiveXObject("Excel.Application");
var oWB = oXL.Workbooks.Add();
var oSheet = oWB.ActiveSheet;
var sel=document.body.createTextRange();
sel.moveToElementText(main);
sel.select();
sel.execCommand("Copy");
oSheet.Paste();
oXL.Visible = true;
}



代碼導出頁面,抄襲來自csdn:
<%
//這樣寫不太科學,因為filename一般不會寫死
//response.setHeader("Content-Disposition", "attachment;filename= aa.xls");
//response.setContentType("application/vnd.ms-excel");
%> <%@ page language="java" import="java.util.*" contentType="application/vnd.ms-excel;charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.net.URLDecoder"%>
<%@ page import="nariis.pi3000.ythTjFx.sbjk.pageHelp.*"%>
<%@ page import="org.apache.poi.hssf.usermodel.*"%>
<%@ page import="java.util.ArrayList"%>
<%@ page import="nariis.pi3000.ythTjFx.sbjk.entity.DataEntity"%> <%
String type = request.getParameter("type");
String sssj = request.getParameter("sssj");
String xtmc = request.getParameter("xtmc");
xtmc = URLDecoder.decode(xtmc,"UTF-8");

System.out.print(type);
System.out.print(sssj);
System.out.print(xtmc);

String path = "Excel"; //註意,千萬別寫中文

response.setHeader("Content-Disposition", "attachment;filename=" + path +".xls");

if("getDataToExcel".equals(type)){
PageService pageService = new PageService();
ArrayList<DataEntity> list = pageService.getAllDataToExcel2(sssj);

// 第一步,創建一個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("SX");
cell.setCellStyle(style);
cell = row.createCell((short) 1);
cell.setCellValue("DWMC");
cell.setCellStyle(style);
cell = row.createCell((short) 2);
cell.setCellValue("SFGYPP");
cell.setCellStyle(style);
cell = row.createCell((short) 3);
cell.setCellValue("SJKLX");
cell.setCellStyle(style);
cell = row.createCell((short) 4);
cell.setCellValue("JSJSL");
cell.setCellStyle(style);
cell = row.createCell((short) 5);
cell.setCellValue("SSSJ");
cell.setCellStyle(style);
cell = row.createCell((short) 6);
cell.setCellValue("XTMC");
cell.setCellStyle(style);
cell = row.createCell((short) 7);

for (int i = 0; i < list.size(); i++)
{
int j =0;
row = sheet.createRow((int) i + 1);
DataEntity dataEntity = (DataEntity) list.get(i);
// 第四步,創建單元格,並設置值
row.createCell((short) j++).setCellValue(dataEntity.getSx());
row.createCell((short) j++).setCellValue(dataEntity.getDWMC());
row.createCell((short) j++).setCellValue(dataEntity.getSfgypp());
row.createCell((short) j++).setCellValue(dataEntity.getSjklx());
row.createCell((short) j++).setCellValue(dataEntity.getJsjsl());
row.createCell((short) j++).setCellValue(dataEntity.getSssj());
row.createCell((short) j++).setCellValue(dataEntity.getXtmc());
}

// 第六步,將文件存到指定位置
try
{
// OutputStream outp=response.getOutputStream();
ServletOutputStream outp = response.getOutputStream();
outp.flush();
wb.write(outp);
outp.close();
response.flushBuffer();
out.clear();
out=pageContext.pushBody();
}
catch (Exception e)
{
e.printStackTrace();
}
}

%>

java代碼導出數據到Excel、js導出數據到Excel(三)