用正则帮你弄了个:
需要包:java.util.regex.Pattern;
String str=request.getParameter("str");//获取那个文本框的数值,假设为str
int numberCount=0;//数字个数
int aplha=0;//字母个数
int other=0;//其他个数
for(int i=0;i if(Pattern.matches("^[0-9]",str.charAt(i)+"")){ numberCount++; } else if(Pattern.matches("^[a-z]||[A-Z]",str.charAt(i)+"")){ aplha++; } else{ other++; } response.getWriter.println("数字:"+numberCount+"字母:"+aplha+"其他:"+other) } 因为你index.jsp页面上,没有定义名字为num的控件,所以request.getParameter("num")是NULL。 把index.jsp页面上的改成即name=num"改成name="num"(num前面加上双引号),value=" "改成value=""(去掉双引号间的空格)就行了。 完整的index.jsp文件内容如下:(guess.jsp文件不用改)jsp中写猜数字的
输入界面:
处理,输出界面:
用javascript 很简单的
>; 中间加上<script></script>
function test(){
var obj = document.getElementById("id").value; // 这里的id 换成你自己的text的id
if(obj>0 && obj
return true;
}else
alert("cuowu");
}
在你的提交按钮的 action="test(); return false;"
直接在这里写的 没测试
你自己可以学下 javascript 很简单的一个东西
以上是使用JSP编写一个字符统计程序,要求用户输入字符串进行统计的详细内容。更多信息请关注PHP中文网其他相关文章!