先对js中的中文进行编码。。。
然后到action去解码就可以了。。。
具体实现。。。
js编码
var comment = document.all.comment.value;
comment  = encodeURI(comment );
comment = encodeURI(comment );//注意要两次

action解码
String comment = request.getParameter("comment ");
try {
comment = java.net.URLDecoder.decode(comment, "utf-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}