System.out.println("Read done ...");
}
private static void doScannerTest() throws Throwable
{
Scanner scanner = new Scanner("Mailbox");
scanner.fetch(Integer.toString(105), "MailboxMailList0");
while ( scanner.hasNext() )
{
System.out.println(scanner.next().name());
}
}