import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
private void lockFileAndWrite()
{
ByteBuffer[] byteBuffers = { ByteBuffer.wrap( ( “Line1” + System.getProperty(“line.separator”) ).getBytes() ), ByteBuffer.wrap( ( “Line2” + System.getProperty(“line.separator”) ).getBytes() ), ByteBuffer.wrap( ( “Line3” + System.getProperty(“line.separator”) ).getBytes() ) };
try ( FileChannel fileChannel = FileChannel.open( Paths.get( “F:/work/test/sample_lock.txt” ), StandardOpenOption.CREATE, StandardOpenOption.APPEND );
FileLock fileLock = fileChannel.lock() )
{
fileChannel.write( byteBuffers );
}
catch ( IOException e )
{
e.printStackTrace();
}
}