上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 第一种: Map map = new HashMap(); Iterator iter = map.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry) iter.next(); Object ke 阅读全文
posted @ 2016-06-30 15:23 馳騁衿琾 阅读(2233) 评论(0) 推荐(0)
摘要: TIMESTAMPDIFF用法: TIMESTAMPDIFF(interval,datetime_expr1,datetime_expr2) 返回日期或日期时间表达式datetime_expr1 和datetime_expr2the 之间的整数差。 mysql> SELECT TIMESTAMPDI 阅读全文
posted @ 2016-06-30 14:57 馳騁衿琾 阅读(19577) 评论(0) 推荐(1)
摘要: web.xml配置 <listener> <listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class> </listener> <servlet> <servlet-name>AxisS 阅读全文
posted @ 2016-06-15 14:41 馳騁衿琾 阅读(154) 评论(0) 推荐(0)
摘要: 链接地址:http://blog.csdn.net/sjf0115/article/details/9346727 http://www.cnblogs.com/iamlilinfeng/archive/2012/12/31/2840663.html 阅读全文
posted @ 2016-06-15 14:21 馳騁衿琾 阅读(289) 评论(0) 推荐(0)
摘要: response.addHeader("Content-Disposition", "attachment;filename="+ filename); response.setContentType("application/vnd.ms-excel;charset=gb2312"); <opti 阅读全文
posted @ 2016-06-13 16:29 馳騁衿琾 阅读(658) 评论(0) 推荐(0)
摘要: var actions=ctx.path + "/api/stat/exportScheStatInfo.json"; var form = $("<form></form>"); form.css('display', 'none'); form.attr('target', '_self'); 阅读全文
posted @ 2016-06-13 14:22 馳騁衿琾 阅读(382) 评论(0) 推荐(0)
摘要: springMVC获取request和response1:在BaseController中加入: protected HttpServletRequest request; protected HttpServletResponse response; protected HttpSession s 阅读全文
posted @ 2016-06-13 14:17 馳騁衿琾 阅读(212) 评论(0) 推荐(0)
摘要: schoolManageGrid = $("#jqGrid").jqGrid({ url : ctx.path+"/api/school/querySchools", mtype:"POST", datatype: "json", height:contentHeight, colNames: [' 阅读全文
posted @ 2016-06-06 20:13 馳騁衿琾 阅读(953) 评论(0) 推荐(0)
摘要: $.ajax({ type: "POST", url: ctx.path+'/api/hPage/getLocalTime.json', traditional: true, dataType: "json", success: function(data){ if(data.rs==1){ var 阅读全文
posted @ 2016-06-06 15:35 馳騁衿琾 阅读(272) 评论(0) 推荐(0)
摘要: //exlel读操作 MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; Iterator<String> iter = multipartRequest.getFileNames 阅读全文
posted @ 2016-06-02 17:54 馳騁衿琾 阅读(33884) 评论(0) 推荐(1)
上一页 1 ··· 3 4 5 6 7 8 下一页