java.util.ConcurrentModificationException

在开发日志系统LogUtil的时候,因为考虑到多日志文件的存在,其中又设置了reset方法清空日志锁。请看代码:

public void reset(){
		Set<String> key = BigMap.logmap.keySet();
		for(Iterator<?> it = key.iterator();it.hasNext();){
			String s = (String)it.next();
		//	System.out.println(BigMap.logmap.get(s));
			ArrayList<Handler> handlers = BigMap.logmap.get(s).getHandlersList();
			for (Handler h:handlers) {
				h.close();
			}
			BigMap.logmap.remove(s);
		}
	}

 运行到此方法的时候,出现

java.util.ConcurrentModificationException

 异常。

经研究发现:

Iterator在遍历的时候不可以删除元素,解决办法,请看代码

public void reset(){
		Set<String> key = BigMap.logmap.keySet();
		List<String> dellist = new ArrayList<String>(key.size());
		for(Iterator<?> it = key.iterator();it.hasNext();){
			String s = (String)it.next();
		//	System.out.println(BigMap.logmap.get(s));
			ArrayList<Handler> handlers = BigMap.logmap.get(s).getHandlersList();
			for (Handler h:handlers) {
				h.close();
			}
			dellist.add(s);
		}
		BigMap.logmap.remove(dellist);
	}
 

你可能感兴趣的:(java.util.ConcurrentModificationException)