jsp内置对象---response对象

本文介绍如何利用JSP的response对象将网页内容保存为Word、Excel和PPT等不同格式。通过设置response的ContentType属性,可以指定浏览器以特定的应用程序格式打开或下载文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

jsp内置对象—response对象学习笔记

Response对象用于动态响应客户端请示,控制发送给用户的信息,并将动态生成响应。
今天上机课做response将网页保存为word、excel和ppt。很奇怪下载的文件格式为.jsp。贴代码:

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>

  <body>
  <p>将本网页分别保存为word、excel和ppt。</p>
  <p>将为网页存储为?</p>
  <form action="" mothed="get" name=form>
  <input type="submit" value="word" name="submit">
  <input type="submit" value="excel" name="submit">
  <input type="submit" value="ppt" name="submit">
  </form>
  <% String str=request.getParameter("submit");
  if(str==null){
  str="";
  }
  if(str.equals("word")){
  response.setContentType("application/msword;charset=gb2312");
  }
  if(str.equals("excel")){
  response.setContentType("application/ms-excel;charset=gb2312");
  }
  if(str.equals("ppt")){
  response.setContentType("application/ms-powerpoint;charset=gb2312");
  }
  %>
  </body>
</html>

setContentType(MIME)的作用是使客户端浏览器,区分不同种类的数据,并根据不同的MIME调用浏览器内不同的程序嵌入模块来处理相应的数据。
了解ContentType

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值