- 博客(5)
- 资源 (3)
- 收藏
- 关注
原创 case when then 使用报字符集不匹配错误(oracle)
select case when t.name = 'chang' then 'hong' else t.name end from student t then后使用了字符串‘hong’和t.name字段,这时候会报字符集不匹配。 解决方法字段加to_char,即 select case when t.name = 'chang' then 'hong' else to_char(t.name) end from student t ...
2020-07-14 17:06:59
2895
原创 bootstrap-select多选下拉框使用
1、需要引入的js及Demo下载链接:https://pan.baidu.com/s/1LzZjKsCqdt3p0q--o_wP8g 密码:vhyw 2、(1)引入js,貌似仅支持1.9后的jquery.js版本 <link href="css/bootstrap.min.css" rel="stylesheet" /> <link href="cs...
2018-07-24 18:12:45
851
原创 Java导出03版Excel文件
/* 日志导出功能 * @author * @param * @return */ @RequestMapping("exportLog.do") public void exportLog(HttpServletResponse response,HttpServletRequest request,MainLogVo queryMainLog) throws Excep...
2018-06-22 09:49:09
515
原创 jsp拖拽功能实现
IE理论上也可以实现,但是下面测试却没实现不知道什么原因。1、html<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>设置页面展示信息_详情页</titl
2018-06-22 09:33:42
1914
转载 Java导出txt文件
1、拼接需要导出的String字符串 /* 拼接字符串 * @author * @param * @return */ @RequestMapping("exportLog.do") public void exportLog(HttpServletResponse response){ //获取日志 List<DtmSystemLog> list = l...
2018-06-21 11:20:12
24771
5
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人