zoukankan
html css js c++ java
mysql 中文支持
修改mysql 目录下的 my.ini
把
default-character-set
全部变为gbk
default
-
character
-
set
=utf8
CREATE
TABLE
`tablename1` (
`aaa`
varchar
(
222
)
default
NULL
) ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8;
/**/
/*
数据表 `tablename1` 的数据
*/
insert
into
`tablename1`
values
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
),
(
'
北大打发打发
'
);
注意在 windows cmd 中 查看是乱码的,因为windows cmd 使用的是 GBK 编码
我们也可以把编码都用成 gbk
查看全文
相关阅读:
ActiveMQ-在Centos7下安装和安全配置
Servlet基础知识点
Filter的执行顺序
Dubbo-使用Maven构建Dubbo服务的可执行jar包
Dubbo-Centos7管控台安装
Spring 小知识点
Zookeeper+ActiveMQ集群搭建
Zookeeper在Centos7上搭建单节点应用
SpringMVC+AJAX+JSON
RocketMQ-Filer
原文地址:https://www.cnblogs.com/gwazy/p/1146766.html
最新文章
Linux设备模型(3)_Uevent
Ubuntu防火墙设置
cryptkeeper的使用
低功耗蓝牙BLE之连接事件、连接参数和更新方法
Linux USB Project
Overview and Evaluation of Bluetooth Low Energy: An Emerging Low-Power Wireless Technology
Generic Access Profile
Linux下pipe使用注意事项
Linux性能分析工具的安装和使用
Android Message Handling Mechanism
热门文章
接口入参保护的含义
mapping4java源码下载(alibab的开源项目)
path、classpath理解
阿里数据库连接池druid
java面试题
xml中${}的使用含义(美元符号大括号,以Spring、ibatis、mybatis为例)
left join后面加上where条件浅析
An error occurred at line: 1 in the generated java file问题处理
CXF报错[1 counts of IllegalAnnotationExceptions]and[Two classes have the same XML type name]and[Use @XmlType.name and @XmlType.namespace to assign different names to them]
Logback初始化失败问题排查(Web.xml中context-param配置详解)
Copyright © 2011-2022 走看看