摘要:
public static String compress(String str) throws IOException { if (str == null || str.length() == 0) { return str; } ByteArrayOutputSt... 阅读全文
摘要:
1、首先需要修改mysql数据库的配置文件my.ini,此文件放在mysql根目录下。在此文件下查找default-character-set属性,并将其值更改为utf8(注意:不是utf-8,也要注意大小写),这里需要将default-character-set属性全部属性的值修改为utf8。示例... 阅读全文