-
include动作查看全部
-
include指令 1.语法 <% include file="地址"%>。 案例:显示当前时间的页面。(1)写一个只输出时间的方法的date.jsp。(2)用于显示的页面,包含<% include file="date.jsp"%>查看全部
-
动态网页的动态指的是能与用户进行交互,比如登录时输入正确的用户名和密码,系统会提示登录成功。动态并不是指能加载动画和视频元素。查看全部
-
PrintWriter 比内置out对象提前查看全部
-
get,post查看全部
-
request对象--下 void setAttribute(String,Object)//储存此请求中的属性值 object getAttribute(String name)//返回指定属性的属性值 int getServerPort();//返回服务器接受此请求所用的端口号 String getCharacterEncoding();//返回字符编码方式 void setCharacterEncodinng();//设置请求的字符编码方式 int getContentLength();//返回请求体的长途(以字节数) String getRemoteAddr();//返回发送此请求的客户端IP地址 String getRealPath(String path);//返回虚拟路径的真实路径 String request.getContextPath();//返回上下文路径查看全部
-
JSP内置对象——request对象 String getParameter(String name) 返回name指定参数的参数值 String[] getParameterValues(String name) 返回包含参数name的所有值的数组 void setAttribute(String,Object);存储此请求中的属性 Object getAttribute(String name) 返回指定属性的属性值 String getContentType() 得到请求体的MIME类型 String getProtocol() 返回请求用的协议类型及版本号 String getSeverName() 返回接受请求的服务器主机名 解决中文乱码问题 <%request.setCharacterEncoding("utf-8"); %>//解决中文乱码,但不能解决URL传递中文出现的乱码 【<a href="request.jsp?username=李四">测试url传参数</a>】其解决方法为:在server.xml中修改Connector,在里面添加:URLEncoding="utf-8" String getParameter(String name) 返回name指定参数的参数值 String[] getParameterValues(String name) 返回包含参数name的所有值的数组 void setAttribute(String,Object);存储此请求中的属性查看全部
-
session常用方法查看全部
-
request常用方法查看全部
-
在server.xml中的connector标签中加入URIEncoding="utf-8",可以解决URL地址中带中文参数乱码的问题查看全部
-
request对象常用方法和特点查看全部
-
out对象常用方法及特点查看全部
-
request对象查看全部
-
通过URL地址传递中文参数,通过修改tomcat服务器 server.xml <Connector URLEncoding="utf-8" />查看全部
-
get、post查看全部
举报
0/150
提交
取消