1213141516171819202122
/** * @param args */ public static void abe_init0() throws Exception { abe = new ABE(); FileOutputStream fos = new FileOutputStream("C:/abe"); abe.write(fos); root = abe.getRootEntity(); FileOutputStream fos2 = new FileOutputStream("C:/abe_root");
268269270271272273274275276277
private static Entity root ; public static void abe_init() throws Exception { FileInputStream fis = new FileInputStream("C:/abe"); abe = new ABE(fis); FileInputStream fis2 = new FileInputStream("C:/abe_root"); root = new Entity(abe, fis2); }