有人说myeclipse只有tomcat6.0 那可能是myeclipse自带安装的服务器。如果你自己下的别的版本在自己电脑,请在myeclipse里面自己再配一个本地的tomcat。而且多个服务器不要同时打开,因为端口可能会发生冲突,导致后面的服务器无法打开。
2018-04-09
新来的朋友注意看了,这段代码,有一点小问题
if (isUseCookies != null && isUseCookies.length > 0);
这段代码已经重复判断了,实际上只需一个(isUseCookies != null)就可以了。
1、如果isUseCookies为空,整个表达式为假,那么后面的isUseCookies.lenth > 0就不会执行了;
2、如果isUseCookies不为空,也就是说isUseCookies.length > 0了,后面的表达式造成的重复判断。
if (isUseCookies != null && isUseCookies.length > 0);
这段代码已经重复判断了,实际上只需一个(isUseCookies != null)就可以了。
1、如果isUseCookies为空,整个表达式为假,那么后面的isUseCookies.lenth > 0就不会执行了;
2、如果isUseCookies不为空,也就是说isUseCookies.length > 0了,后面的表达式造成的重复判断。
2018-04-07
常用jsp对象out request response session applocation
jsp九大内置对象其他对象 Page pageContext exception config
jsp九大内置对象其他对象 Page pageContext exception config
2018-04-05
<%
int number=-1;
// 说明用户第一次访问页面,计数器对象还未创建
if(application.getAttribute("counter")==null)
{
application.setAttribute("counter", 0); }
number = Integer.parseInt(application.getAttribute("counter").toString());
number++;
application.setAttribute("counter", number);
%>
老师源码里的 记录访问此页面的用户数量
int number=-1;
// 说明用户第一次访问页面,计数器对象还未创建
if(application.getAttribute("counter")==null)
{
application.setAttribute("counter", 0); }
number = Integer.parseInt(application.getAttribute("counter").toString());
number++;
application.setAttribute("counter", number);
%>
老师源码里的 记录访问此页面的用户数量
2018-04-03