08 2016 档案

摘要:因为一些事,下午打开了MyEclipse里的一个项目,点击 run 后开始运行,可是意外发生了,项目跑不起来,然后就报各种那个bug,比如说:No Action Namespace....这个struts2的作物,connection timeout 这个连接错误,然后项目里也少了很多项目,,,,然 阅读全文
posted @ 2016-08-31 15:58 窗外是绿色的 阅读(223) 评论(0) 推荐(0)
摘要:一、常用方法学习 有用常用法:http://my.oschina.net/u/246578/blog/62744 二、布局学习 五种布局:http://www.itnose.net/detail/6398033.html TableLayout 动态变化:http://blog.csdn.net/b 阅读全文
posted @ 2016-08-23 14:52 窗外是绿色的 阅读(221) 评论(0) 推荐(0)
摘要:学习链接 : http://www.cnblogs.com/aaronjs/archive/2012/06/30/2570970.html 阅读全文
posted @ 2016-08-22 11:27 窗外是绿色的 阅读(128) 评论(0) 推荐(0)
摘要:$.messager.alert()学习链接 http://www.cnblogs.com/libingql/archive/2011/07/17/2109020.html 阅读全文
posted @ 2016-08-17 11:18 窗外是绿色的 阅读(84) 评论(0) 推荐(0)
摘要:参考链接:http://www.admin10000.com/document/6530.html 阅读全文
posted @ 2016-08-16 09:48 窗外是绿色的 阅读(101) 评论(0) 推荐(0)
摘要:参考链接:http://blog.csdn.net/pzhtpf/article/details/25326397/ 阅读全文
posted @ 2016-08-15 14:36 窗外是绿色的 阅读(85) 评论(0) 推荐(0)
摘要:摘自 : http://www.cnblogs.com/gjb724332682/p/5586586.html 阅读全文
posted @ 2016-08-12 18:41 窗外是绿色的 阅读(113) 评论(0) 推荐(0)
摘要:从网上摘录了一段$.each方法使用细节(摘自 http://www.cnblogs.com/mabelstyle/archive/2013/02/19/2917260.html) Js代码 var arr = [ "one", "two", "three", "four"]; $.each(arr 阅读全文
posted @ 2016-08-12 11:29 窗外是绿色的 阅读(122) 评论(0) 推荐(0)
摘要:链接; http://www.cnblogs.com/lucker/archive/2013/03/01/2939163.html 阅读全文
posted @ 2016-08-10 15:04 窗外是绿色的 阅读(238) 评论(0) 推荐(0)
摘要:layui下的alert,confirm等弹出框都有icon属性配置,icon共有七种属性配置,分别是: {icon:0},"!" 效果如下: {icon:1},"对勾" 效果如下: {icon:2},"叉"效果如下: {icon:3},"?" 效果如下: {icon:4},"锁"效果如下: {ic 阅读全文
posted @ 2016-08-10 14:40 窗外是绿色的 阅读(2228) 评论(0) 推荐(0)
摘要:html页面body标签下的DIV标签高度自适应,或者高度100%设置: 通常情况下 <div style="height:100%"></div> 即可将Div标签的高度设置为母标签高度的100%; 但是,当body下的直接子标签DIV不能通过这种方式实现高度100%设置(可通过height:10 阅读全文
posted @ 2016-08-10 10:35 窗外是绿色的 阅读(1441) 评论(0) 推荐(0)
摘要:基本包装类的List 与 Set 实例对象转化为字符串 当 hello 为 空List时,hello.toString()为 "[]";当hello 不为空List时,hello.toString()为 "[1,2,3,44,2222]"之类的数据 hello为空或者不为空的情况下,通过kk.sub 阅读全文
posted @ 2016-08-05 10:37 窗外是绿色的 阅读(322) 评论(0) 推荐(0)
摘要:List<StudentClass> datas = new ArrayList<StudentClass>(); datas = ......; Iterator<StudentClass> itreator = datas.iterator(); while(iterator.hasNext() 阅读全文
posted @ 2016-08-05 10:18 窗外是绿色的 阅读(162) 评论(0) 推荐(0)
摘要:json字符串转换为bean对象 String json = "{name:'hello',age:'12'}"; Muser user = (Muser) JSONObject.toBean(json, Muser.class); jsonArray字符串转换为 List实例对象 String r 阅读全文
posted @ 2016-08-05 10:03 窗外是绿色的 阅读(1568) 评论(0) 推荐(0)
摘要:环境:MyBatis框架; 缘由:最近在弄点小改动,用到了 in SQL查询,在action中通过StringBuffer 类类创造“(id1,id2,id3)”的结构,然后mapper映射文件中通过来查找,可是运行时候出现了问题,通过打印出来的sql语句及参数却能在Mysql中运行。 经过询问别人 阅读全文
posted @ 2016-08-01 14:25 窗外是绿色的 阅读(132) 评论(0) 推荐(0)