文章列表
在使用SimpleDateFormat碰到一个现象
代码如下
输出结果如下
问题:
在windows2003中先卸载MySQL,再安装MySQL后,如果发现service启动不启来。检查windows的应用程序日志 ,错误信息是“Default storage engine (InnoDB) is not available”
解决方法: 1、删除在MySQL安装目录下的Data目录中的 ib_logfile0 ib_logfile1
2、找到在配置MySQL服务器时指定的InfoDB目录删除掉
ibdata1
3、重新启动MySQL的Service
window.location.href 的url中带汉字出现乱码问题
解决方法:
首先:对url中的汉字编码。
window.location.href = url+"&demo=" + encodeURI(encodeURI(demo)) ,其中demo是中文;
然后:java中对汉字解码。
String demo=java.net.URLDecoder.decode(request.getParameter("demo"), "utf-8");
------------------- ...