mac 中 mysql 中文乱码问题

发布于 2022-09-04 12:14:45 字数 1648 浏览 16 评论 0

问题如下:
mac 系统版本 10.12.2
mysql 数据版本 5.6.35-macos10.12-x86_64

现在已经在/etc/my.cnf 中添加utf8编码

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.

[mysqld] character-set-server=utf8

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
# basedir = .....
# datadir = .....
# port = .....
# server_id = .....
# socket = .....

[client] default-character-set=utf8

终端查询字符编码如下:
图片描述

终端查询中已经设置成为utf8 编码

navicat 中查询
图片描述

终端查询带有中文的数据表
图片描述

IDE 中 java 查询数据表
图片描述

现在问题是 能在navicat 中能够查询中文。 在mac终端和java中查询都是乱码。 ,求解决。。。。。。。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆流 2022-09-11 12:14:45

已经找到问题所在,就是因为在navicat批量导入sql文件得的时候,mac系统中的navicat会自动把编码变为default(latin1) ,所以在navicat中看到是正常的中文,而由于在mac终端以及java 设置的编码都是utf8,所以就产生了乱码。以后导入sql数据时候需要注意一下!!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文