import java.io.*; public class Tryit { public static void main(String args[]) throws Exception { String in = "in.tre"; String out = "out.tre"; UTree.reroot(new File(in), new File(out), new String[0]); } }