1. Proses
(1) boleh bertindak sebagai aliran input atau mencairkan aliran output
(2) menyokong pembacaan dari permulaan fail , tulis
(3) Sokong membaca dan menulis (sisipan) dari mana-mana lokasi
(4) Kelas RandomAccessFile perlu menentukan mod akses:
2. Contoh
public void RandomAccessFile(String src, String srcMode, String dest, String destMode) { RandomAccessFile accessFile = null; RandomAccessFile accessFile1 = null; try { accessFile = new RandomAccessFile(new File(src), srcMode); accessFile = new RandomAccessFile(new File(dest), destMode); byte[] bytes = new byte[1024]; int length; while ((length = accessFile.read(bytes)) != -1) { accessFile1.write(bytes, 0, length); } } catch (IOException e) { e.printStackTrace(); } finally { if (accessFile != null) try { accessFile.close(); } catch (IOException e) { e.printStackTrace(); } if (accessFile1 != null) { try { accessFile1.close(); } catch (IOException e) { e.printStackTrace(); } } } }
Atas ialah kandungan terperinci Bagaimana untuk mengakses secara rawak dalam kelas RandomAccessFile Java. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!