excel
(史帝芬, idealist@gcn.net.tw, 2003/09/20)
許多的專案使用者都會希望將報表匯到excel,在jsp這要怎麼做呢? 這個蠻簡單的,看一下下面的sample, 將它放到tomcat上執行一下就知道了。<%@ page contentType="application/msexcel" %>
<%
response.setHeader("Content-disposition","inline;
filename=GlobalExport.xls");
%>
<html>
<head><title>Excel</title></head>
<body>
<table>
<tr>
<th colspan="3">Title<th>
</tr>
<tr>
<td>1:1</td><td>1:2</td><td>1:3</td>
</tr>
<tr>
<td>2:1</td><td>2:2</td><td>2:3</td>
</tr>
</table>
</body>
</html>