This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / Java Unicode问题请教
-lubx(黑白世界*来歇口气);
2004-6-30
{757}
(#1785282@0)
-
手头没有以前的代码,按照我的回忆1. 转request
strVal = ((String [])request.getParameterValues(strKey))[0];
strVal = new String(strVal.getBytes(ENCODING_ISO), ENCODING_GB);
2. 设response
res.setContentType("text/html; charset=" + ENCODING_GB);
3. jsp开头声明
<%@ page contentType="text/html; charset=gb2312"%>
4. 和mysql的连接不用设置
5. give it a try and good luck
-xanada(㊣流水);
2004-6-30
{357}
(#1785313@0)
-
谢谢流水, 发现是MYSQL 问题, 重新建立TABLE : CREATE TABLE t1 {。。} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci, MYSQL 4。1 以前不完全支持UNICODE!!, 终於一下解决问题。 还解决了Collation SORTING。
-lubx(黑白世界*来歇口气);
2004-6-30
(#1785346@0)