Deserialized object instance without class definition

前端 未结 3 1196
别跟我提以往
别跟我提以往 2021-01-12 08:11

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 (

相关标签:
3条回答
  • 2021-01-12 08:31

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

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

    0 讨论(0)
  • 2021-01-12 08:42

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

    0 讨论(0)
  • 2021-01-12 08:42

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

    0 讨论(0)
提交回复
热议问题