摘要:
Tomcat在处理GET和POST请求时产生的乱码解决的方法有两个: 1. 将GET请求改成POST请求,然后就可以使用request.setCharacterEncoding方法设置编码,并使用request.getParameter方法直接获得中文请求参数了。 2. 不用改GET请求,在Servlet中使用如下的代码来得到中文请求参数。 String name = new String(request.getParameter("name").getBytes("ISO-8859-1"), "GBK"); 综上所述,如果使用了GE 阅读全文
摘要:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><%@page import="com.modorn.Bean.UserDao"%><%@page import="com.modorn.Bean.UserBean"%><% String path = request.getContextPath(); String basePath = request.getSche 阅读全文