把参数放到作用域里面去.如:action中:request.setAttribute("参数名","值");页面上:request.getAttribute("参数名");request.getParameter()方法完全可以获得URL参数,检查下是否参数名写错你使用的是不是BaseAction....
分类:
其他好文 时间:
2014-09-08 10:45:46
阅读次数:
245
JSP中request getParameter和getAttribute不同(转载)
分类:
Web程序 时间:
2014-09-04 13:12:09
阅读次数:
176
String filePath = request.getParameter("filePath");
filePath = request.getServletContext().getRealPath("/") + filePath;
String targetPath = request.getParameter("target");
File file = new File(file...
分类:
编程语言 时间:
2014-09-04 10:34:49
阅读次数:
244
■可读性差 ■Servlet需要配置web.xml,维护不方便 ■Servlet中的参数通过getParameter获得,中文处理 ■Servlet通过response. sendRedirect跳转回JSP ■校验 ■国际化(I18N) ■拦截器
分类:
编程语言 时间:
2014-09-03 11:07:26
阅读次数:
243
做个记录:var pCount = this._dataProvider.GetParameter();pCount.ParameterName = "totalCount";pCount.Direction = ParameterDirection.Output;pCount.DbType = D...
分类:
数据库 时间:
2014-09-03 10:56:06
阅读次数:
362
java 上传文件如果不依赖框架的话要利用 Apache 中几个jar文件来处理1、 给表单设置enctype属性,其值为 "multipart/form-data",另外,提交方式必须是post。2、 在服务器端,不能够直接使用request.getParameter方法来获得数据。只能使用I.....
分类:
编程语言 时间:
2014-08-28 12:49:49
阅读次数:
176
引用我这里想知道的是同名的多个参数,会被自动的放置在List或者数组中,我想知道是怎么实现的,因为取一个参数和取多个同名的参数是不同的方法: 一个是request.getParameter 一个是request.getParameterValues先解释一下: Struts或则XWorlk提供的In...
分类:
其他好文 时间:
2014-08-26 19:20:56
阅读次数:
174
1.session.setAttribute()和session.getAttribute()配对使用,作用域是整个会话期间,在所有的页面都使用这些数据的时候使用。2.request.setAttribute()和request.getAttribute()配对使用,作用域是请求和被请求页面之间。 ...
分类:
其他好文 时间:
2014-08-26 09:38:55
阅读次数:
215
HttpServletRequest类既有getAttribute()方法,也由getParameter()方法,这两个方法有以下区别:(1)HttpServletRequest类有setAttribute()方法,而没有setParameter()方法(2)当两个Web组件之间为链接关系时,被链接...
分类:
其他好文 时间:
2014-08-22 15:48:58
阅读次数:
142
request.getAttribute():是request时设置的变量的值,用request.setAttribute("name","您自己的值");来设置值,request.getParameter():提取发送过来的参数如:本网页http://community.abc.net/Exper...
分类:
其他好文 时间:
2014-08-22 12:09:16
阅读次数:
161