Does Eclipse have an editor/viewer for java serialized files?

后端 未结 4 1314
借酒劲吻你
借酒劲吻你 2021-02-13 13:06

I\'m serializing my objects with ObjectOutputStream(FileOutputStream(File)) and deserializing them with the analogous InputStreams. Is there a way to l

4条回答
  •  天命终不由人
    2021-02-13 13:57

    Write a class which loads the file and deserialises the object. Then use Eclipse's Debugging View to browse the object (by setting a breakpoint).

提交回复
热议问题