Como fechar corretamente o MappedByteBuffer?

Este é o código que estou executando:

import java.io.RandomAccessFile;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;

public class Main {
    public static void main(String[] args) throws Exception {
        String filePath = "D:/temp/file";
        RandomAccessFile file = new RandomAccessFile(filePath, "rw");

        try {
            MappedByteBuffer buffer = file.getChannel().map(FileChannel.MapMode.READ_WRITE, 0, 128);

            // Do something
            buffer.putInt(4);
        } finally {
            file.close();
            System.out.println("File closed");
        }

        System.out.println("Press any key...");
        System.in.read();

        System.out.println("Finished");
    }
}

Antes de pressionar uma tecla, estou tentando excluir o arquivo manualmente no FAR Manager. Mas FAR diz que o arquivo está bloqueado:

 The process cannot access the file because it is being used by another process.
                     Cannot delete the file
                         D:\temp\file
                    Object is being opened in:
 Java(TM) Platform SE binary (PID: 5768, C:\Program Files\Java\jdk1.8.0_05\bin\javaw.exe)

Somente depois de pressionar uma tecla, o aplicativo é encerrado e eu posso excluir o arquivo.

o que está errado com meu código?

questionAnswers(2)

yourAnswerToTheQuestion