免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3539 | 回复: 6
打印 上一主题 下一主题

为什么mysql显示乱码,试过非常多的方法了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-10-27 11:40 |只看该作者 |倒序浏览
本帖最后由 nakar 于 2011-10-27 11:43 编辑

mysql版本是:   Server version: 5.5.16 MySQL Community Server (GPL)
python版本: 2.7.2
  1. mysql> show variables like "char%";
  2. +--------------------------+----------------------------------------------------
  3. -----+
  4. | Variable_name            | Value
  5.      |
  6. +--------------------------+----------------------------------------------------
  7. -----+
  8. | character_set_client     | utf8
  9.      |
  10. | character_set_connection | utf8
  11.      |
  12. | character_set_database   | utf8
  13.      |
  14. | character_set_filesystem | binary
  15.      |
  16. | character_set_results    | utf8
  17.      |
  18. | character_set_server     | utf8
  19.      |
  20. | character_set_system     | utf8
  21.      |
  22. | character_sets_dir       | C:\Program Files\MySQL\MySQL Server 5.5\share\chars
  23. ets\ |
  24. +--------------------------+----------------------------------------------------
复制代码
数据库数据显示:
  1. mysql> select * from t_article
  2.     -> ;
  3. +-----+----------------------+-----------------------+--------------------------
  4. --------------------------+-------------+
  5. | aid | article_name         | author                | summary
  6.                           | type        |
  7. +-----+----------------------+-----------------------+--------------------------

  8. -------------------------+-------------+
  9. |   1 | 鐖朵笌瀛?              | 寮犲北                  | 鏃ュ父绗戣瘽銆傘俓./
  10. 锛?8                                | 鍟ユ槸銆俴k    |
  11. |   2 | 鍗佷竾data minging     | 缃戦熺殑has浜笢鏂?      |  7&&&(**%^^%^%闃挎
  12. 柉椤垮彂鏂拏鑺噾楦块闇滈檷             | 鎾掑搱.銆俴    |
  13. +-----+----------------------+-----------------------+--------------------------
  14. --------------------------+-------------+

  15. 2 rows in set (0.02 sec)
复制代码
读取mysql的脚本:
  1. conn = MySQLdb.connect(host='localhost', user='root',passwd='root',charset='utf8')

  2. cur=conn.cursor()

  3. cur.execute("SET NAMES 'utf8'")
  4. cur.execute("SET CHARACTER_SET_CLIENT=utf8")
  5. cur.execute("SET CHARACTER_SET_RESULTS=utf8")

  6. cur.execute('use testdb')

  7. cur.execute('select * from t_article limit 100')

  8. for i in cur.fetchall():
  9.     print i
复制代码
读出来的数据貌似unicode编码。
  1. (1L, u'\u7236\u4e0e\u5b50', u'\u5f20\u5c71', u'\u65e5\u5e38\u7b11\u8bdd\u3002\u3002\\./\uff1f88', u'\u5565\u662f\u3002kk')
  2. (2L, u'\u5341\u4e07data minging  ', u'\u7f51\u901f\u7684has\u4eac\u4e1c\u65b9', u' 7&&&(**%^^%^%\u963f\u65af\u987f\u53d1\u65af\u8482\u82ac\u91d1\u9e3f\u98de\u971c\u964d', u'\u6492\u54c8.\u3002k')
复制代码

论坛徽章:
0
2 [报告]
发表于 2011-10-27 11:50 |只看该作者
好像是好的,真奇怪。

论坛徽章:
0
3 [报告]
发表于 2011-10-27 11:51 |只看该作者
修改默认字符集以及增加远程访问:
vim /etc/mysql/my.cnf
在[client]下添加default-character-set=utf8 在[mysqld]下添加default-character-set=utf8 注释掉#bind-address = 127.0.0.1

论坛徽章:
0
4 [报告]
发表于 2011-10-27 11:54 |只看该作者
我读出来也是unicode编码 但是你用html 展现出来 就是中文了!

论坛徽章:
0
5 [报告]
发表于 2011-10-27 14:25 |只看该作者
windows的dos窗口下吗?
mysql -uroot -p --default-character-set=gbk这样可以显示中文

论坛徽章:
0
6 [报告]
发表于 2011-10-28 15:06 |只看该作者
回复 5# panzifei


    COOL,果然如此,多谢兄弟。

论坛徽章:
0
7 [报告]
发表于 2011-10-28 16:05 |只看该作者
五楼的兄弟我是赞同的
如果是windows的dos窗口的话是不能设置utf8的 ,
之前我也遇到过  
还有 要弄清数据在各个地方都是什么格式的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP