摘要: 首先要安装mail.jar 和activation.jar ,有的时候myeclipse中J2EE包中自带的mail.jar不好用,就弃用,重新去Oracel官网下载个,放到WEB-INF/lib文件夹中,然后在src目录下创建log4j.properties,同时在web.xml中添加 ... 阅读全文
posted @ 2013-09-10 13:53 wyang0126 阅读(225) 评论(0) 推荐(0) 编辑
摘要: for(ProductType t:types){ if(t.getDeleted()){ types.remove(t); } }原因:不能在遍历一个集合的时候,删除里面的元素。Iterator的工作机制:Iterator是工作在一个独立的线程中,并且拥有一个 mutex锁,就... 阅读全文
posted @ 2013-09-10 08:49 wyang0126 阅读(124) 评论(0) 推荐(0) 编辑