Dumping a Java program into a file and restarting it

后端 未结 10 976
温柔的废话
温柔的废话 2020-12-29 08:30

I was just wondering if it\'s possible to dump a running Java program into a file, and later on restart it (same machine)

It\'s sounds a bit weird, but who knows

10条回答
  •  北海茫月
    2020-12-29 08:43

    I believe what the OP is asking is what the Smalltalk guys have been doing for decades - store the whole programming/execution environment in an image file, and work on it.

    AFAIK there is no way to do the same thing in Java.

提交回复
热议问题