上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
  2016年7月22日
摘要: <iterate property="" /*可选, 从传入的参数集合中使用属性名去获取值, 这个必须是一个List类型, 否则会出现OutofRangeException, 通常是参数使用java.util.Map时才使用, 如果传入的参数本身是一个java.util.List, 不能只用这个属性 阅读全文
posted @ 2016-07-22 17:13 筱筱鹿丸 阅读(3351) 评论(0) 推荐(0) 编辑
摘要: continue为结束本次循环。即跳出循环体中下面尚未执行的语句,对于while循环,继续求解循环条件。而对于for循环程序流程接着求解for语句头中的第三个部分expression表达式。 continue语句和break语句的区别是: continue语句只结束本次循环,而不终止整个循环的执行。 阅读全文
posted @ 2016-07-22 16:24 筱筱鹿丸 阅读(209) 评论(0) 推荐(0) 编辑
摘要: //测试Map Map<String, String> map = new HashMap<String, String>(); map.put("1", "value1"); map.put("2", "value2"); map.put("3", "value3"); Set<String> k 阅读全文
posted @ 2016-07-22 16:04 筱筱鹿丸 阅读(156) 评论(0) 推荐(0) 编辑
  2016年7月21日
摘要: Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. 解决: D:\workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers. 阅读全文
posted @ 2016-07-21 14:35 筱筱鹿丸 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1.json转list 2.list转json 阅读全文
posted @ 2016-07-21 11:38 筱筱鹿丸 阅读(238) 评论(0) 推荐(0) 编辑
摘要: cron表达式2种: Seconds Minutes Hours DayofMonth Month DayofWeek Year或 Seconds Minutes Hours DayofMonth Month DayofWeek 秒 分 时 日 月 星期 年 字段 允许值 允许的特殊字符 秒 0-5 阅读全文
posted @ 2016-07-21 11:33 筱筱鹿丸 阅读(2443) 评论(0) 推荐(0) 编辑
  2016年7月19日
摘要: DOM方法: 父窗口操作IFRAME:window.frames["iframeSon"].documentIFRAME操作父窗口: window.parent.document jquery方法:在父窗口中操作 选中IFRAME中的所有输入框: $(window.frames["iframeSon 阅读全文
posted @ 2016-07-19 13:57 筱筱鹿丸 阅读(398) 评论(0) 推荐(0) 编辑
摘要: W3C的标准告诉我们,可以通过Dom对象的contentDocument属性来返回文档对象。IE8开始支持,如果你的项目不用兼容IE6,IE7的话使用这种方式最好。 IE6,IE7需要如此访问 兼容方式: 使用Jquery则简单些: 获取iframe页面的方法(engineList.jsp) 注: 阅读全文
posted @ 2016-07-19 11:24 筱筱鹿丸 阅读(8188) 评论(0) 推荐(1) 编辑
  2016年7月18日
摘要: 1>java对象转json ,使用JSONArray 2>Map转换成json, 使用JSONObject 3>List转换成JSON数据,使用JSONArray 4>将数组转换为JSON,使用JSONArray 1 String[] arr = {"asd","dfgd","asd","234"} 阅读全文
posted @ 2016-07-18 16:20 筱筱鹿丸 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 在HTTP请求时候总是设置两个参数,就是连接超时和Socket超时 阅读全文
posted @ 2016-07-18 14:48 筱筱鹿丸 阅读(14891) 评论(0) 推荐(1) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页