//1.代码解决 public class LuanMa { public static String getNewString(String luanma){ String result = ""; try{ result = new String(luanma.getBytes("ISO-8859-1"),"UTF-8"); //以ISO-8859-1解码,再以UTF-8重新编码 } catch(Exception e){ e.printSt…
一.phpmyadmin设置新建数据库的默认编码为utf8编码的方法 1:新建数据库 my_db 2:使用sql语句 set character_set_server=utf8; //设置默认新建数据库编码为utf8 alter database testdb character set utf8; //更改现有数据库编码 二.phpmyadmin导入数据库时gbk或utf8编码的设置(解决导入数据库中文乱码问题) 1.首先确保导入的sql文件中的中文不是乱码,此sql文件可以是utf8…