alexlex
发贴: 17
|
于 2005-01-04 16:25
雪儿飘飘 wrote: 你也可以直接在tomcat中配置,如在conf/server.xml中,找到 <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="ISO-8859-1" /> 在最后一行加上 URIEncoding="ISO-8859-1" 如果是tomcat5的话,还要考虑get或post的问题。 如果是用GET的方式的话,用类似于下面的方法解决 String name = new String((request.getParameter("name")).getBytes("ISO-8859-1","Big5"); 如果是用POST方式的话,用传统的方法解决 request.setCharacterEncoding("Big5");
如果用big5的话,根本不必new string之类,直接就URIEncoding="big5" ,而且还能使用${param.name}
Eclipse使用技巧
|