On serialization my object which is a custom class, holding various ArrayLists, every so often I get a Concurrent Mod Exception. Clearly one or more of the arraylists is throwing this. But I don't know where, or how to fix it. Implementing an iterator would be my first idea, but how to go about doing that for serialization?

This is my serialization code:enter code here

 try{
    ByteArrayOutputStream bos = new ByteArrayOutputStream(); 

    try { 
          ObjectOutput out = new ObjectOutputStream(bos); 
          out.writeObject(TGame);

          // Get the bytes of the serialized object 
          byte[] buf = bos.toByteArray(); 

          File sdCard = Environment.getExternalStorageDirectory();
          File dir = new File (sdCard.getAbsolutePath() + "/game_folder");
          dir.mkdirs();
          File file = new File(dir, "serializationtest");


          FileOutputStream fos = new FileOutputStream(file);
              //this.openFileOutput(filename, Context.MODE_PRIVATE);
          fos.write(buf);
          fos.close(); 
        } catch(IOException ioe) { 
          Log.e("serializeObject", "error", ioe); 


        }catch(StackOverflowError e){
            //do something
        }

        File f =this.getDir(filename, 0);
        Log.v("FILE SAVED",f.getName());    
    }catch(ConcurrentModificationException e){
        //do something          
    }
}
link|improve this question

Post the stacktrace. – Robin Jun 2 '11 at 15:31
Why are you catching StackOverflowException? – sudocode Jun 2 '11 at 15:41
2  
@sudocode: That protects questions from downvotes. ;) – Mikaveli Jun 2 '11 at 15:52
@Mikaveli - Can't think of a better reason to catch it. 8-) – Robin Jun 2 '11 at 16:37
ZWhy catching StackOverflow? I don't know. I was pulling my hair out with this problem and it the serialization also caused Stacoverflws, so I pt it in to see what would happen out of frustration. I left it in there cus it doesnt seem to be doing any harm. – JJG Jun 3 '11 at 0:46
feedback

1 Answer

While Java api is serializing the object ( here inner array list), if at the same time some other thread Structurally Modifies ArrayList then you get a Concurrent Mod Exception.

One solution is Locking Mechanism ensuring that only one thread accesses that object at a Time. Another simple solution is that the object that is to be written, create a shallow copy of that object and serialize that copy. This way even if original ArrayList changes, shallow copy will have not effect and will work fine. e.g.

class Test {
 int a;
 string b;
 ArrayList<String> c;
 Test(Test t){
  this.a=t.a;
  this.b=t.b;
  this.c=new ArrayList<String>(t.c);
 }
}
FileOutputStream fos = new FileOutputStream(file);
//write a copy of original object
      fos.write(new Test(t));

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.