java - saving running instance in netbeans -
i've created application in netbeans ide 6.9. want save running application. select various things in applications. want if run application again things should selected. want save running instance of application. can me this? -thanks in advance
the java language , runtime system not directly support kind of thing.
if want application save state can resume doing later, have code state-saving mechanism yourself; e.g. writing key data structures file or keeping persistent state in database of kind.
incidentally, few programming languages directly support application checkpointing , resumption. dialects of lisp do, did "persistent programming languages" ps-algol , napier-88. exception rather rule.
Comments
Post a Comment