上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: http://www.icoolxue.com/album/show/216 阅读全文
posted @ 2019-03-01 17:30 杨不凡 阅读(128) 评论(0) 推荐(0) 编辑
摘要: http://blog.geekidentity.com/spring/spring_boot_translation/ https://blog.csdn.net/zfrong/article/details/3971722 阅读全文
posted @ 2019-03-01 16:31 杨不凡 阅读(269) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zfrong/article/details/3971722 阅读全文
posted @ 2019-03-01 16:09 杨不凡 阅读(206) 评论(0) 推荐(0) 编辑
摘要: /* 全选/全不选 */function selectAll(){ if($("#ckAll").is(":checked",true)){ $(":checkbox").prop("checked",true); //所有选择框都选中 }else{ $(":checkbox").prop("checked",false); } }/*全选和复选的联动*/fu... 阅读全文
posted @ 2019-03-01 11:19 杨不凡 阅读(101) 评论(0) 推荐(0) 编辑
摘要: <c:foreach>类似于for和foreach循环 以下是我目前见过的用法:1、循环遍历,输出所有的元素。<c:foreach items="${list}" var="li">${li}</c:foreach>注意:items 用于接收集合对象,var 定义对象接收从集合里遍历出的每一个元素。 阅读全文
posted @ 2019-02-27 10:56 杨不凡 阅读(4681) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zyw-205520/p/4771253.html 阅读全文
posted @ 2019-02-27 09:39 杨不凡 阅读(99) 评论(0) 推荐(0) 编辑
摘要: String oldname = file.getName().substring(file.getName().indexOf("_")+1); String encodefileName = request.getHeader ( "user-agent" ).contains ( "MSIE" ) ? ("="+URLEncoder.encode ( oldfilename, "utf-... 阅读全文
posted @ 2019-02-21 15:21 杨不凡 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 11 public class ServletDemo3 extends HttpServlet { 12 13 int i=1; 14 public void doGet(HttpServletRequest request, HttpServletResponse response) 15 throws ServletException, IOExc... 阅读全文
posted @ 2019-02-21 09:37 杨不凡 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 一、concat()函数 1、功能:将多个字符串连接成一个字符串。 2、语法:concat(str1, str2,...) 返回结果为连接参数产生的字符串,如果有任何一个参数为null,则返回值为null。 3、举例: 例1:select concat (id, name, score) as in 阅读全文
posted @ 2019-02-15 17:02 杨不凡 阅读(193) 评论(0) 推荐(0) 编辑
摘要: select UNIX_TIMESTAMP(addtime/*date_column*/) from tablename 输出:1548658912 数据库原格式:2019-01-28 15:01:20 阅读全文
posted @ 2019-01-30 15:17 杨不凡 阅读(1284) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页