当前位置: 技术问答>java相关
请问如何判断 request.getparameter 是否有值
来源: 互联网 发布时间:2015-09-27
本文导语: 像 form 中 post 的值 或 http://.... ?aa=2&bb=5 当中如何判断 request.getparameter("aa") 是有值的呢 像 ASP 上是判断是否等于 "" 就可以了 但 java 不行 请指教指教 谢谢 先者得分 | request.getparamete...
像 form 中 post 的值
或 http://.... ?aa=2&bb=5
当中如何判断 request.getparameter("aa") 是有值的呢
像 ASP 上是判断是否等于 "" 就可以了
但 java 不行
请指教指教 谢谢
先者得分
或 http://.... ?aa=2&bb=5
当中如何判断 request.getparameter("aa") 是有值的呢
像 ASP 上是判断是否等于 "" 就可以了
但 java 不行
请指教指教 谢谢
先者得分
|
request.getparameter("aa")返回String,判断该String是否为null.
|
String string = (String) request.getParameter("aa") ;
if(string == null) {
//do something
}else {
//do something
}
if(string == null) {
//do something
}else {
//do something
}