当前位置: 技术问答>java相关
有一段代码,怎么能第一次进入时不运行呢?谢谢!!!!!
来源: 互联网 发布时间:2017-04-18
本文导语: Instore Army System 店内促销系统 - 登录 用户登录名: 密码: welcome to IAS , power by leony.com 这样一段代码,怎么才能使第一次进入时不弹出“用户名不能为空”呢?谢谢...
Instore Army System
店内促销系统 - 登录
用户登录名: 密码:
welcome to IAS , power by leony.com
这样一段代码,怎么才能使第一次进入时不弹出“用户名不能为空”呢?谢谢!!!
|
用session不就行了嗎﹐
|
if(username!=null||!username.equals(""))
{
//your code
}
{
//your code
}
|
String usename=request.getParameter("username");
String password=request.getParameter("passwd");
在这个后面加上
if(username!=null||username.length()>0)
{
//your code
}
String password=request.getParameter("passwd");
在这个后面加上
if(username!=null||username.length()>0)
{
//your code
}
|
你的邏輯有問題:應該是
if(username != null && username.length()>0)
{
//your code
}
if(username != null && username.length()>0)
{
//your code
}