我将收到带有三个输入参数的HTTP URL。其中一个参数是字符串,另外两个是整数值。
我想检查所有三个请求参数是否都存在。另外,我需要检查所有输入参数是否为空。
示例-http网址:
http://....../ a = 123456&b = 12345678&c = y
答案 0 :(得分:0)
String a = request.getParameter("a");
String b = request.getParameter("b");
String c = request.getParameter("c");
if(a != null && !a.isEmpty()) {
//Do something with a.
}
if(b != null && !b.isEmpty()) {
//Do something with b.
}
if(c != null && !c.isEmpty()) {
//Do something with c.
}
如果请求参数不存在,它将为null。如果存在但没有数据集,它将是一个空字符串。