List of utility methods to do RandomAccessFile Create
RandomAccessFile | getRandomAccessFile() get Random Access File if (randomAccessFile == null) { try { randomAccessFile = new RandomAccessFile(new File(db_name), "rw"); } catch (FileNotFoundException e) { throw new FileNotFoundException(e.getMessage()); return randomAccessFile; ... |
RandomAccessFile | getRandomAccessFile(String path, String charEncoding) get Random Access File InputStream is = getInputStream(path); if (is != null) { return new RandomAccessFile(new File(path), "r"); return null; |