在你得到的数据的后面加上 .trim()就可以了
例:
String ss=request.getParameter("strname").trim();
这样可以了.
试试这个,js字符串直接调用trim()方法
String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/g, "");
};
可以用trim()来去掉首尾空格
可以用字符串方法,切割,将空格切割掉.
str.split(" ");
或者首位去空格
str.trim();
或者用替换
nstr.replaceAll(" ","" );