import java.io.*;
class DemoArbreLecteur {
static public void main(String[] args) {
Arbre b=null;
try {
FileInputStream fis = new FileInputStream("arbre.tmp");
ObjectInputStream ois = new ObjectInputStream(fis);
b = (Arbre) ois.readObject();
ois.close();
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
b.parcours();
} // main
}