MyEclipse与mysql增改查现乱码解决方案绝对有效

2024-10-16 13:13:07

1、安装MyEclipse和mysql软件(貌似废话),然后设置MyEclipse与mysql的连接jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8

MyEclipse与mysql增改查现乱码解决方案绝对有效MyEclipse与mysql增改查现乱码解决方案绝对有效MyEclipse与mysql增改查现乱码解决方案绝对有效

2、设置MyEclipse文件编码。且跟mysql的连接编码一致set names gbk; SET ch锾攒揉敫aracter_set_client='utf8';SET character_set_connection='utf8';SET character_set_results='utf8';show variables like '%char%';SET character_set_client='utf8';SET character_set_connection ='utf8';SET character_set_database ='utf8';SET character_set_filesystem='utf8';SET character_set_results ='utf8';SET character_set_server ='utf8';SET character_set_system ='utf8';SET character_set_client='utf8';

MyEclipse与mysql增改查现乱码解决方案绝对有效MyEclipse与mysql增改查现乱码解决方案绝对有效

3、建表就定义字符编码,且与之前定义的一致:create table recommentd(id int(255)not null primary key auto_increment,productUrl varchar(255)character set utf8,ImgUrl varchar(255)character set utf8,name varchar(255)character set utf8)ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;

MyEclipse与mysql增改查现乱码解决方案绝对有效

4、执行增删改查测试:

MyEclipse与mysql增改查现乱码解决方案绝对有效
猜你喜欢