摘要: response.setCharacterEncoding("gb2312"); 在Servlet2.3中是不行的,至少要2.4版本才可以,如果低于2.4版本,可以用如下办法: response.setContentType("text/html;charset=gb2312"); 阅读全文
posted @ 2019-08-23 14:07 Mr_xYu 阅读(604) 评论(0) 推荐(0) 编辑
摘要: select count(t1.id) from table t1 left join table2 t2 on t1.tid = t2.id 发现是别名问题 改为:select count(t1.id) as count from table t1 left join table2 t2 on t 阅读全文
posted @ 2019-05-24 15:34 Mr_xYu 阅读(717) 评论(0) 推荐(0) 编辑
摘要: JSP:<div class="form-actions"> <button id="addR" type="button" class="btn btn-sm btn-primary"> <i class="icon-filter"></i> 添加行 </button> <button id="a 阅读全文
posted @ 2019-05-24 10:33 Mr_xYu 阅读(453) 评论(0) 推荐(0) 编辑