Prentice Hall and Sun Microsystems. Personal use only; do not redistribute.
A.11 The JSP page Directive: Structuring Generated Servlets
535
Example of Using setContentType
ApplesAndOranges.jsp
Comparing Apples and Oranges
<%
String format = request.getParameter("format");
if ((format != null) && (format.equals("excel"))) {
response.setContentType("application/vnd.ms excel");
}
%>
Apples Oranges First Quarter 2307 4706 Second Quarter 2982 5104 Third Quarter 3011 5220 Fourth Quarter 3055 5287