인터넷에는 jsp 페이지를 Excel 테이블로 내보내는 예가 많이 있지만, 그 중 대부분은 프런트엔드와 백엔드를 상호 연결해야 합니다. 여기 제 예에서는 jsp 페이지에 코드만 작성하면 됩니다. 코드는 다음과 같습니다:
testExcel.jsp 페이지 코드:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:x="urn:schemas-microsoft-com:office:excel"> <script type="text/javascript"> function exportExcel(){ window.open('testExcel.jsp?exportToExcel=YES'); } </script> <head> <!-- 显示网格线 --> <xml> <x:ExcelWorkbook> <x:ExcelWorksheets> <x:ExcelWorksheet> <x:Name>工作表标题</x:Name> <x:WorksheetOptions> <x:Print> <x:ValidPrinterInfo /> </x:Print> </x:WorksheetOptions> </x:ExcelWorksheet> </x:ExcelWorksheets> </x:ExcelWorkbook> </xml> <!-- 显示网格线 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Export to Excel - Demo</title> </head> <body> <% String exportToExcel = request.getParameter("exportToExcel"); if (exportToExcel != null && exportToExcel.toString().equalsIgnoreCase("YES")) { response.setContentType("application/vnd.ms-excel"); response.setHeader("Content-Disposition", "inline; filename=" + "excel.xls"); } %> <table align="left" border="2"> <thead> <tr bgcolor="lightgreen"> <th>ID</th> <th>文本内容</th> <th>序列</th> <td style="display: none">序列222</td> </tr> </thead> <tbody> <% for (int i = 0; i < 10; i++) { %> <tr bgcolor="lightblue"> <td align="center"><%=i%></td> <td align="center">文本内容 <%=i%></td> <td align="center"><%=i*10%></td> <td style="display: none" align="center"><%=i * 20%></td> </tr> <% } %> </tbody> </table> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> <% if (exportToExcel == null) { %> <a href="javascript:exportExcel();">导出为Excel</a> <% } %> </body> </html>
PS: "Excel로 내보내기" 하이퍼링크를 클릭하면 모든 페이지의 내용이 Excel로 내보내집니다. 그러나 "Excel로 내보내기" 하이퍼링크가 Excel에 표시되는 것을 원하지 않을 수도 있습니다. 이를 방지하기 위해,exportToExcel 매개변수가 나타나는지 여부를 판단하는 판단 조건을 추가했습니다. 나타나는 경우 해당 내용이 엑셀로 내보내지고 하이퍼링크가 포함되지 않는다는 의미입니다. 반대로, 이는 브라우저가 웹 페이지를 표시하기만 하면 하이퍼링크가 페이지에 표시되기를 원한다는 의미입니다.
위 내용은 JSP 내보내기 Excel 테이블 예제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!