博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HttpServletRequest接口实例化的使用
阅读量:6760 次
发布时间:2019-06-26

本文共 1226 字,大约阅读时间需要 4 分钟。

HttpServletRequ接口的使用和jsp内置对象的request对象非常类似,request对象其实

就是HttpServletRequest接口的一个实例,不过气实例化的过程是自动的,无须自定义。

以下示例达到的效果为:通过一个HttpServletRequest接口的实利化对象设置并取得

request范围属性的示例。

RequestDemo.java

1 package com.mhb; 2  3 import java.io.IOException; 4 import java.io.PrintWriter; 5  6 import javax.servlet.ServletException; 7 import javax.servlet.http.HttpServlet; 8 import javax.servlet.http.HttpServletRequest; 9 import javax.servlet.http.HttpServletResponse;10 11 public class RequestDemo extends HttpServlet {12 13 public void init() throws ServletException {14 }15 public void doGet(HttpServletRequest request, HttpServletResponse response)16 throws ServletException, IOException {17 18 //设置输出内容的格式和编码19 response.setContentType("text/html;charset=gb2312");20 PrintWriter out = response.getWriter();21 22 //存储在request范围内23 request.setAttribute("name", "测试者");24 //取得request范围name的属性25 String name = (String) request.getAttribute("name");26 27 out.println("");28 out.println("");29 out.println("name:"+name);30 out.println("");31 out.println("");32 33 }34 public void doPost(HttpServletRequest request, HttpServletResponse response)35 throws ServletException, IOException {36 }37 public void destroy() {38 super.destroy();39 }40 }

浏览器显示:

转载地址:http://bmfeo.baihongyu.com/

你可能感兴趣的文章
LoadRunner 如何将英文的字符串转换成UTF-8格式的字符串?
查看>>
Oracle系列:安装Oracle RAC数据库(二)
查看>>
nginx 另一WAF方式
查看>>
LinkedTransferQueue学习导引
查看>>
对restore database preview显示结果的思考
查看>>
Windows Server 2008 R2入门之NTFS权限
查看>>
精品软件 推荐 酷我音乐 一个可以下载320k 音质的音乐播放软件
查看>>
heartbeat+DRBD+mysql高可用集群实战
查看>>
The listener supports no services The command completed successfully
查看>>
centos6.5系统编译安装mariadb以及实现主从复制
查看>>
C#获取系统版本信息
查看>>
linux磁盘阵列实战
查看>>
Android应用程序进程启动过程的源代码分析(3)
查看>>
【畅谈百度轻应用】云时代·轻应用·大舞台
查看>>
Forefront_TMG_2010-TMG发布Web服务器
查看>>
MySQL字符集的一个坑
查看>>
区块链将成支付宝国际化的有力武器!
查看>>
理论上分析IP报文的结构各字段的意义
查看>>
OCS 2007 R2搭建准备虚机及快照
查看>>
Oracle 高可用概述
查看>>