Jsp request
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%> <% 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> <form action="show.jsp" method="post"> <ul style="list-style;none;line-height:30px"> <li>输入用户姓名: <input type="text" name="name3"/><br/></li> <li>Selet Sex: <input name="sex" type="radio" value="Male"/>Man <input name="sex" type="radio" value="Female" />Female </li> <li> selet password question: <select name="question"> <option value="mother birthday:">Mother birthday:</option> <option value="Pet name">Pet name</option> </select> </li> <li>请输入问题答案: <input type="text" name="key"/> </li> <li>selet your habit: <div> <input name="like" type="checkbox" value="Singing and dancing" />Singing and dancing <input name="like" type="checkbox" value="surf on the Internet" />urf on the Internet <input name="like" type="checkbox" value="Climb" />Climb <input name="like" type="checkbox" value="Reading" />Reading </div> </li> <li><input type="submit" value="Submit"/> </ul> </form> <ul style="line-height:24px"> <li>客户使用的协议:<%=request.getProtocol() %></li> <li>客户端发送请求的方法:<%=request.getMethod() %></li> <li>客户端请求路径:<%=request.getContextPath() %></li> <li>客户机IP地址:<%=request.getRemoteAddr() %></li> <li>客客户机名称:<%=request.getRemoteHost() %></li> <li>客户机请求端口号:<%=request.getRemotePort() %></li> <li>接受客户信息的页面:<%=request.getServletPath()%></li> <li>获取报头中User-Aget值:<%=request.getHeader("user-agent") %></li> <li>获取报头中Uaccept值:<%=request.getHeader("accept") %></li> <li>获取报头中Host值:<%=request.getHeader("host") %></li> <li>获取报头中accept-encoding值:<%=request.getHeader("accept-encoding") %></li> <li>获取URI:<%=request.getRequestURI() %></i> <li>获取URL:<%=request.getRequestURL()%></li> </ul> </body> </html>
Jsp request的更多相关文章
- jsp Request获取url信息的各种方法比较
从Request对象中可以获取各种路径信息,以下例子: 假设请求的页面是index.jsp,项目是WebDemo,则在index.jsp中获取有关request对象的各种路径信息如下 String p ...
- jsp request 获取路径
这篇教程不错:http://zjutsoft.iteye.com/blog/1084260 自己试验如下: System.out.println("-----------------serv ...
- jsp request 对象详解
转自:http://www.cnblogs.com/qqnnhhbb/archive/2007/10/16/926234.html 1.request对象 客户端的请求信息被封装在request对象中 ...
- JSP Request方法大全
协议:request.getProtocol() 输出:HTTP/1.1 服务器信息 getServletConfig().getServletContext().getServerInfo() 输出 ...
- jsp request.getParameterValues获取数组值代码示例
tt.jsp <form action="tt2.jsp" method="POST"> <select name="two&quo ...
- JSP - request - 1
<%@ page language="java" contentType="text/html;charset=utf8" %> <%@ pa ...
- jsp request对象
getParameter( ) :返回name指定参数的参数值 String[] getParameterValues(String name) :返回包含参数name的所有值的数值 getA ...
- Jsp重定向(response.sendRedirect())和转发(request.getRequestDispatcher().forward(request,r)的差别
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"% ...
- JSP 中的 Request 和 Response 对象
客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应.它是HttpServletRequest类的实例:response对象包含了响应客户请求的有关信息,但在JSP中 ...
随机推荐
- java下io文件切割合并功能
package cn.stat.p1.file; import java.io.File; import java.io.FileInputStream; import java.io.FileNot ...
- css控制图片变灰色,彩色
<A href="链接地址"><IMG src="p1.jpg" border="0"></A> < ...
- 【转】【C/C++】内存分配函数:malloc,calloc,realloc,_alloca
转自:http://www.cnblogs.com/particle/archive/2012/09/01/2667034.html#commentform malloc: 原型:extern voi ...
- Selinux 禁用
Selinux是对于强制访问控制的实现,在这种访问控制体系的限制下,进程只能访问那些在他的任务中所需要文件. 对于新手来说会影响我们的操作.一般情况下是不需要的,所以禁用他,如果需要的情况下,我们可以 ...
- C程序设计语言练习题1-1
练习1-1 在你自己的系统中运行"hello, world"程序.再有意去掉程序中的部分内容,看看会得到什么出错信息. 代码如下: #include <stdio.h> ...
- C语言初学 if-else语句判断俩数的最大值
#include<stdio.h> main() { float a,b; printf("输入俩个任意实数\n"); scanf("%f%f",& ...
- 使用laravel的任务调度(定时执行任务)
laravel中有一个很强大上的功能,只需要在服务器上添加一个cron条目,就可以定时执行所有的laravel任务. 现在有如下数据表: 我想让cron表中的cron字段的值每分钟增加1,那么我需要如 ...
- Java如何从HttpServletRequest中读取HTTP请求的body
首先贴出原文地址,尊重原作者 http://blog.csdn.net/zxygww/article/details/47045055 注意:下面方法已验证通过. HTTP请求中的是字符串数据: // ...
- LeetCode_Permutation Sequence
The set [1,2,3,…,n] contains a total of n! unique permutations. By listing and labeling all of the p ...
- CCI_chapter 2 Linked Lists
2.1 Write code to remove duplicates from an unsorted linked list /* Link list node */ struct node { ...