@After
 public void tearDown() throws Exception {
   out.close();
   if (!tempFile.delete()) System.out.printf("Delete failed on %s%n", tempFile);
 }
 @Before
 public void setUp() throws Exception {
   tempFile = File.createTempFile("TestLongOffset", "out");
   out = new PrintWriter(new FileOutputStream(tempFile));
 }