摘要: 缺少slf4j的包: 添加依赖: 代码: 阅读全文
posted @ 2017-04-21 10:23 迷人的智慧 阅读(13029) 评论(0) 推荐(0) 编辑
摘要: <a>是内联元素 必须设置成块级元素block 才能有width和height 不过你可以又定义display:block再定义成display:inline 以避免在IE6下产生BUG 阅读全文
posted @ 2017-04-18 15:40 迷人的智慧 阅读(3543) 评论(0) 推荐(0) 编辑
摘要: 通过mouseover和mouseout事件来控制iframe的滚动条 代码如下: 阅读全文
posted @ 2017-04-17 18:05 迷人的智慧 阅读(1538) 评论(0) 推荐(0) 编辑
摘要: 1、代码: response.setContentType("application/msword;charset=GBK"); try { response.setHeader("Content-Disposition", "attachment;fileName=" + new String(f 阅读全文
posted @ 2017-04-14 17:53 迷人的智慧 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Headers.add("Content-Disposition", "attachment;filename=" + new String(file.getBytes("utf-8"),"iso-8859-1")); 即可。 阅读全文
posted @ 2017-04-14 17:35 迷人的智慧 阅读(1962) 评论(0) 推荐(0) 编辑
摘要: 当页面在关闭或刷新时提示 阅读全文
posted @ 2017-04-14 13:53 迷人的智慧 阅读(4982) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/hongten/p/hongten_python_keywords.html python3.3.2中的关键字如下: The following identifiers are used as reserved words, or keywords 阅读全文
posted @ 2017-04-14 09:52 迷人的智慧 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/daemonpei/article/details/6325762 字符串相关操作: + :string1+string2 #联接字符串,将后一个串链接到前一个串的后面 * :string*n #创建一个新字符串重复n次原来的串 [] :string[ 阅读全文
posted @ 2017-04-14 09:43 迷人的智慧 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 当你的表X中有A,B两列,数据如下 A B a 1 a 2 a 3 b 1 b 2 b 3 想让数据以 a|1|2|3 , b|1|2|3 格式显示可使用listagg() 1、使用listagg() + group by select A,B,listagg(B,'|') within GROUP 阅读全文
posted @ 2017-04-14 09:26 迷人的智慧 阅读(20192) 评论(0) 推荐(1) 编辑
摘要: 1、 2、需要在packages中新建相同的包名;否则无法编译,报没有声明 阅读全文
posted @ 2017-04-13 18:33 迷人的智慧 阅读(4387) 评论(0) 推荐(0) 编辑