vote up 1 vote down star

In anyone aware of a tool/script/program/whatever to create a java object instance from a binary java serialized object?

I don't have the .class file, so I can't ( afaik ) simply create an ObjectInputStream and load it from there.

This object has the default serialization mechanism, and I'm trying to debug a problem we have.

Anyone?

flag

75% accept rate
How do you end up with a serialized object that doesn't have a .class file? – ykaganovich Jul 2 at 22:06
eeerhmmm... It's a long history. Once upon a time a software developer ... ohh .. .nevermind. – Oscar Reyes Jul 2 at 22:16
Ok, I found the .class files, they are inside .jar "files" ( as expected ) which happen to be inside a DB :) I'm about the change the question. Get files from blob :) – Oscar Reyes Jul 2 at 22:22
2  
.jar files stored inside the DB? I thought I'd heard it all. – cliff.meyers Jul 2 at 22:32
2  
Oracle supports RUNNING jarfiles stored inside the DB... Oh the joy :) – Thorbjørn Ravn Andersen Jul 2 at 22:35
show 1 more comment

3 Answers

vote up 1 vote down

I think what you want to accomplish is very similar to this post

link|flag
Uh?... What is the answer? Using object serialization/deserialization? I don't have .class file – Oscar Reyes Jul 2 at 22:18
The answer was to get the .class file from a URL. – Yishai Jul 2 at 23:46
vote up 1 vote down

There was a rather detailed post about the format in JavaWorld recently... Might be worth reading.

Link: http://www.javaworld.com/community/node/2915

link|flag
Yeap, something along this lines. I know there are a couple of tools like asm or other bytecode manipulation tools, but I have never use them before, so I don't know what's the best tool – Oscar Reyes Jul 2 at 22:20
vote up 0 vote down

Create a class with the correct name and serialVersionUID. Implement readObject. Use ObjectInputStream.readFields to get the ObjectInputStrem.GetFields.

link|flag
I've got InvalidClassException. I guess I need to know what's the correct serialVersionUID. Exception in thread "main" java.io.InvalidClassException: com.o.a.I; enum descriptor has non-zero serialVersionUID: 12885773312 – Oscar Reyes Jul 2 at 23:27

Your Answer

Get an OpenID
or

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