Home | History | Annotate | Download | only in strictmodetest

Lines Matching refs:raf

421         RandomAccessFile raf = null;
427 //raf = new RandomAccessFile(filename, "rw");
428 //raf.write(buf);
429 //raf.close();
430 //raf = null;
433 raf = new RandomAccessFile(filename, "r");
434 raf.seek(0);
435 raf.read(buf);
439 try { if (raf != null) raf.close(); } catch (IOException e) {}