码迷,mamicode.com
首页 >  
搜索关键字:httpservletrequest    ( 1478个结果
Servlet对文件的读写操作
(1)如何在serlvet中读取文件的内容 package com.tsinghua; import java.io.*; import javax.servlet.http.*; public class ServletFileTest1 extends HttpServlet { public void doGet(HttpServletRequest req,HttpSer...
分类:其他好文   时间:2014-09-01 09:19:42    阅读次数:142
Servlet实现Cookie的创建,读取,删除
(1)如何创建cookie案例 package com.tsinghua; import javax.servlet.http.*; import java.io.*; public class CookieTest1 extends HttpServlet{ //处理get请求 public void doGet(HttpServletRequest req,HttpServ...
分类:其他好文   时间:2014-08-31 15:51:24    阅读次数:195
Servlet登陆功能的实现
(1)创建动态的Login页面 //登陆界面 package com.lc; import javax.servlet.http.*; import java.io.*; public class Login extends HttpServlet{ public void doGet(HttpServletRequest req,HttpServletResponse res){ ...
分类:其他好文   时间:2014-08-30 16:29:29    阅读次数:259
SpringMVC 之文件上传 MultipartResolver
基于前面文章的基础上。一、准备 需要的jar二、配置1、 spmvc-servlet.xmlXml代码fileUploadController2、Controller 使用两种方式: 一种是基于注解的,另一种传统的方式HttpServletRequest使用第二种方式时要注意:操作方法中对应的方法参...
分类:编程语言   时间:2014-08-29 17:35:08    阅读次数:343
[Struts2]访问request,session和application对象(转)
与Servlet API解耦的访问方式Structs2对HttpServletRequest,HttpSession,和ServletContext进行了封装,构造了三个Map对象来替代这三种对象,在Action中,直接使用HttpServletRequest,Httpsession,Servlet...
分类:移动开发   时间:2014-08-27 14:38:47    阅读次数:294
java 判断手机访问还是电脑访问
import javax.servlet.http.HttpServletRequest; public class HttpRequestDeviceUtils { ?? ?/**Wap网关Via头信息中特有的描述信息*/ ?? ?private static String mobileGateWayHeaders[]=new String[]{ ?...
分类:移动开发   时间:2014-08-27 11:12:58    阅读次数:288
JSP九大隐式对象
1.jsp的九大隐式对象 request HttpServletRequest response HttpServletResponse session HttpSession application ServletcContext config   ServletConfig exception (特殊情况下使用) page     this(本JSP页面) ou...
分类:Web程序   时间:2014-08-23 20:24:31    阅读次数:205
struts2下载中文在IE firefox下乱码问题
// 判断浏览器 HttpServletRequest request = ServletActionContext.getRequest(); String Agent = request.getHeader("User-Agent"); if (null != Agent) { Agent = ...
分类:其他好文   时间:2014-08-23 18:56:11    阅读次数:161
request.getAttribute() 和 request.getParameter() 有何区别?
HttpServletRequest类既有getAttribute()方法,也由getParameter()方法,这两个方法有以下区别:(1)HttpServletRequest类有setAttribute()方法,而没有setParameter()方法(2)当两个Web组件之间为链接关系时,被链接...
分类:其他好文   时间:2014-08-22 15:48:58    阅读次数:142
jsp 详解request对象
request对象 客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。序号 方 法 说 明1 object getAttribute(String name) 返回指定属性的属性值2 Enumeration ge...
分类:Web程序   时间:2014-08-22 15:48:38    阅读次数:207
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!