I am trying to remove value from the map which is iterated when i try this i get the following exception .
Exception in thread "main" java.util.ConcurrentModificationException
My code is below.
public static Map removeHolyday(Map daysMap,Map holydayMap){
Iterator<Map.Entry> workingDays = daysMap.entrySet().iterator();
while (workingDays.hasNext()) {
Map.Entry workingDaysEntry = workingDays.next();
System.out.println("Key = " + workingDaysEntry.getKey() + ", Value = " + workingDaysEntry.getValue());
Iterator<Map.Entry> holydays = daysMap.entrySet().iterator();
while (holydays.hasNext()) {
Map.Entry holydayEntry = holydays.next();
if(workingDaysEntry.getKey().toString().equals(holydayEntry.getKey().toString())){
daysMap.remove(workingDaysEntry.getKey().toString());
}
}
}
return daysMap;
}
Please help me to solve this.
EDIT :
this is the code i use but the value is not gettig deleted from map;
package sample;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
class Workindays {
public static int findNoOfDays(int year, int month, int day) {
Calendar calendar = Calendar.getInstance();
System.out.println("month : " + month);
calendar.set(year, month - 1, day);
int days = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
System.out.println("days :"+days);
return days;
}
public static Map getHolydaysMap(int year, int month, int day) {
//connect with database and check whether the date is holyday query is = SELECT * FROM holiday_calendar h WHERE date >='2008-10-01' AND date <='2008-10-30' AND type='Fixed';
Map holydaysMap = new ConcurrentHashMap();
holydaysMap.put("17","17-04-2012");
holydaysMap.put("25","25-04-2012");
return holydaysMap;
}
public static Map getWorkingDaysMap(int year, int month, int day){
int totalworkingdays=0,noofdays=0;
String nameofday = "";
Map workingDaysMap = new HashMap();
Map holyDayMap = new ConcurrentHashMap();
noofdays = findNoOfDays(year,month,day);
holyDayMap = getHolydaysMap(year,month,day);
for (int i = 1; i <= noofdays; i++) {
Date date = (new GregorianCalendar(year,month - 1, i)).getTime(); // year,month,day
SimpleDateFormat f = new SimpleDateFormat("EEEE");
nameofday = f.format(date);
String formatedDate = i + "-" + month + "-" + year;
if(!(nameofday.equals("Saturday") || nameofday.equals("Sunday"))){
workingDaysMap.put(i,formatedDate);
totalworkingdays++;
}
}
workingDaysMap.put("totalworkingdays", totalworkingdays);
System.out.println("removeHolyday : "+removeHolyday(workingDaysMap,holyDayMap));
return workingDaysMap;
}
public static Map removeHolyday(Map daysMap,Map holydayMap){
Iterator<Map.Entry> holyDayiterator = holydayMap.entrySet().iterator();
while (holyDayiterator.hasNext()) {
Map.Entry holyDayEntry = holyDayiterator.next();
Iterator<Map.Entry> daysiterator = daysMap.entrySet().iterator();
while (daysiterator.hasNext()) {
Map.Entry daysEntry = daysiterator.next();
if(daysEntry.getKey().equals(holyDayEntry.getKey()))
daysMap.remove(holyDayEntry.getKey());
}
}
System.out.println(daysMap);
return daysMap;
}
public static void main(String[] args) {
String delimiter = null, dateValues[] = null, startDate = "01-04-2012";
int year = 0,month=0,day=0,totalworkingdays = 0;
Map workingDaysMap = new LinkedHashMap();
startDate = "01-04-2012";
delimiter = "-";
dateValues = startDate.split(delimiter);
year = Integer.parseInt(dateValues[2]);
month = Integer.parseInt(dateValues[1]);
day = Integer.parseInt(dateValues[0]);
workingDaysMap = getWorkingDaysMap(year, month, day);
System.out.println("workingdays map : "+workingDaysMap);
}
}
working code :
package sample;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class Main {
public static Map removeHolyday(Map daysMap,Map holydayMap){
Iterator<Map.Entry> holyDayiterator = holydayMap.entrySet().iterator();
while (holyDayiterator.hasNext()) {
Map.Entry holyDayEntry = holyDayiterator.next();
Iterator<Map.Entry> daysiterator = daysMap.entrySet().iterator();
while (daysiterator.hasNext()) {
Map.Entry daysEntry = daysiterator.next();
if(daysEntry.getKey().equals(holyDayEntry.getKey()))
daysMap.remove(holyDayEntry.getKey());
}
}
System.out.println(daysMap);
return daysMap;
}
public static void main(String[] args) {
Map holydaysMap = new ConcurrentHashMap();
holydaysMap.put("17", "17-04-2012");
holydaysMap.put("25", "25-04-2012");
Map holydayMap = new HashMap();
holydayMap.put("17", "17-04-2012");
holydayMap.put("25", "25-04-2012");
holydayMap.put("3", "03-04-2012");
holydayMap.put("4", "04-04-2012");
removeHolyday(holydayMap, holydaysMap);
}
}
Regards
Antony
In this case, it’s actually pretty easy – just change this line:
to:
While you’re iterating over a collection, you can only make changes to it via the iterator’s
remove()method, basically. Note that some iterators don’t support removal – hopefully the implementation of map you’re using does…EDIT: I suspect you’ve got another bug, actually. This line:
should probably be:
At the moment you’re not even using
holydayMap. You should also break after the call toremove()– you can’t remove the same entry twice.EDIT: I think I’ve found the problem now, and you’d have found it yourself if you were using generics. The
holyDayMapkeys are all strings:… but the working day map keys are integers:
Now “17” isn’t the same as 17, so no entries will match. If you declared your maps with their key/value types, you’d spot this earlier.
Note that your “working” code sample doesn’t have this problem – it uses strings everywhere.
(You should really consider whether strings are the right values to use to start with – consider using Joda Time and
LocalDatefor date representations…)EDIT: Here’s a short but complete program which shows
remove()working:Output:
So you need to work out why your code doesn’t behave that way.