赞
踩
出现中文变问号的代码:
String url = "jdbc:mysql://localhost:3306/test";
java.sql.SQLException: Unsupported character encoding 'utf8"'解决方法
String url = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8";
问题概述
关于这个编码问题,是在应用程序开发过程中遇到的,更新代码后一直出现启动失败的情况,提示 “ Unsupported character encoding ‘utf8"’ ” 不支持字符编码“utf8”。
解决办法
看到这个问题后,博主的第一反应是JDBC的URL地址上面出现了问题,打开系统的配置文件查看,果不其然,内容如下
String url = "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8"/";
看到其设置的字符编码后面多了一个 "/符号,删除掉即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。