Mega Code Archive

 
Categories / Java / File Input Output
 

Create a read-write memory-mapped file

import java.io.File; import java.io.RandomAccessFile; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; public class Main {   public static void main(String[] argv) throws Exception {     File file = new File("filename"); //  Create a read-write memory-mapped file     FileChannel rwChannel = new RandomAccessFile(file, "rw").getChannel();     ByteBuffer writeonlybuffer = rwChannel.map(FileChannel.MapMode.READ_WRITE, 0, (int) rwChannel         .size());   } }