Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an implementation that will serialize a Java object as Java code? For example, if I have the object

Map<String,Integer> m = new Map<String,Integer>();
m.put("foo",new Integer(21));

I could serialize this using

ObjectOutputStream out = new ObjectOutputStream( ... );
out.writeObject( m );
out.flush();

and the output would, for example, be

java.util.Map<String,Integer> m = new java.util.Map<String,Integer>(); 
m.put("foo",new Integer(21));

Why would you want this? Sometimes it is easier to partially create complex objects programmatically and then complete the creation manually in code. This code can then be included in the source and version controlled with everything else. Note that using external serialized objects is not exceptable.

Thanks for any help you can give.

share|improve this question
2  
I don't think there is any (standard) way to do this – Vincent Koeman Jun 8 '11 at 15:38
1  
(+1) for "Why do you want this", many questions want something unusual, but, it doesn't explain why. And there is a lot of auto code generation out there, when the main stuff is generated, and only a few details are coded by hand... – umlcat Jun 8 '11 at 15:38
1  
I assume you mean new HashMap..., right? – Matt Ball Jun 8 '11 at 15:39
1  
Another alternative would be static code generation (by an external entity) - so you don't have to do it by hand. The benefit of this is that you don't have to spend CPU cycles deserializing it. – mindas Jun 8 '11 at 15:40

2 Answers

You can achieve custom serialization of your objects. You have to implement two methods in your class with the exact signature:

private void writeObject(ObjectOutputStream oos)
{
    //write your serialization code here
}


private void readObject(ObjectInputStream ois)
{
    //write your de-serialization code here
}

However the amount of flexibility that you are seeking is very doubtful.

share|improve this answer

Could you use Clojure instead and integrate it with your Java code? Clojure is homoiconic - its data is identical to its code, so you can do things like this very easily.

Maps are a basic datatype in Clojure.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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