servlet前台中文参数处理
Posted SunshineKevin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet前台中文参数处理相关的知识,希望对你有一定的参考价值。
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// 。。。。处理[添加一些参数]
resp.setContentType("text/html;charset=utf-8");
req.setCharacterEncoding("utf-8");
String name = req.getParameter("name");
PrintWriter writer = resp.getWriter();
name = new String(name.getBytes("ISO-8859-1"), "utf-8");
String txt = "测试成功";
writer.print(txt);
}
以上是关于servlet前台中文参数处理的主要内容,如果未能解决你的问题,请参考以下文章
当 Windows (phone) 8.1 应用程序在前台时接收并处理通知参数