码迷,mamicode.com
首页 >  
搜索关键字:getparameter    ( 503个结果
js如何获取另一个页面传递过来的值?
vart="<%=request.getParameter("do")%>"; alert(t);
分类:Web程序   时间:2014-05-27 03:54:38    阅读次数:209
中文乱码问题解决方法总结
1jsp页面显示乱码将jsp页面首行的1 中的字符集charset改为“GB18030”或“GB2312”2jsp页面传输乱码在获取参数的jsp页面将获取到的值进行相应的转码如:1 String name=request.getParameter("name");2 name=new String....
分类:其他好文   时间:2014-05-26 19:40:08    阅读次数:261
介绍EasyMock
你能够依据调用次序来mock同一个办法:EasyMock.expect(request.getParameter("userName")).andReturn("trilogy").once();EasyMock.expect(request.getParameter("userName")).an...
分类:其他好文   时间:2014-05-21 22:17:46    阅读次数:248
jsp中的<jsp:setProperty>中的param属性
比如:其中的param属性 相当于value=""还要注意:如果javabean里面的属性(比如说edge属性)对应的类型是int,double或者其他类型,又因为request.getParameter("num")永远返回的是string类型 ,那么param会自动类型转换, 不需手动转换.
分类:Web程序   时间:2014-05-21 21:46:09    阅读次数:288
getParameter
最近学习JAVA的WEB开发,遇到Request中相关的getParameter方法问题。在网上找了一下。自己整理,以备以后查用。getParameter得到的都是String类型的。或者是用于读取提交的表单中的值(http://a.jsp?id=123中的123),或者是某个表单提交过去的数据;g...
分类:其他好文   时间:2014-05-21 21:42:52    阅读次数:202
ASP.NET和JSP相似方法总结(持续中。。)
一.HTTP请求处理1.获取GET请求数据ASP.NET:Request.QueryString[name]JSP:request.getParameter(String name);2.解决字符串乱码问题:NameValueCollection coding;coding = HttpUtilit...
分类:Web程序   时间:2014-05-20 02:37:14    阅读次数:317
java 发送http json请求
public void getRemoteId(HttpServletRequest request,Model model){ String name = request.getParameter("userName"); String gender = request.getParamete.....
分类:编程语言   时间:2014-05-16 06:48:05    阅读次数:294
Java Web(4):JSP内置对象
request 对象代表来自客户端的请求,如 form 表单填写的信息常用的方法:getParameter、getParameterNames、getParameterValues、setAttribute、getAttributesetAttribute 和 getAttribute 一般成对出现...
分类:编程语言   时间:2014-05-15 10:40:31    阅读次数:294
java web 程序---注册页面核心代码哈希Map
收获:在运行程序的时候,错误出现。主要是map没有进行判断,是否为空,如果为空,则创建一个对象new HashMap();然后就注意细节,String name=request.getParameter("name"); String pass=request.getParameter("pa...
分类:编程语言   时间:2014-05-13 17:33:42    阅读次数:276
网页小记录
两个页面之间传递中文参数,编码:StringstrPtname=request.getParameter("ptname");strPtname=newString(strPtname.getBytes("ISO-8859-1"),"UTF-8");
分类:Web程序   时间:2014-05-11 04:34:22    阅读次数:306
503条   上一页 1 ... 48 49 50 51 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!