We have just made a new release of Mint and DrJava with Mint: September 16, 2010 (r15772). The latest release is, as always, available from the Mint implementation page:
We have added the [cci lang=”java”]edu.rice.cs.mint.runtime.MintSerializer[/cci] class to it that can write code object, including CSP data, to a jar file (or whatever stream you like), and then restore it again. Here is a very simple example:
[cc lang=”java”]Code
File f = new File(dir, “IntegerCode1.jar”);
MintSerializer.save(c, “IntegerCode1”, f);
Integer s = MintSerializer.load(f);
System.out.println(s);[/cc]
The version of DrJava with Mint is based on the current trunk (and not on updated stable release of DrJava that was made available this week).
(Re-posted from The Java Mint Blog.)