How to get raw disk access in Java with write permissions - Windows 7

disk, io, java

Solution

Your problem is that `new RandomAccessFile(drivepath, "rw")` uses flags which are not compatible to raw devices. For writing to such a device, you need Java 7 and its new nio classes:

String pathname;
// Full drive:
// pathname = "\\\\.\\PhysicalDrive0";
// A partition (also works if windows doesn't recognize it):
pathname = "\\\\.\\GLOBALROOT\\ArcName\\multi(0)disk(0)rdisk(0)partition(5)";

Path diskRoot = ( new File( pathname ) ).toPath();

FileChannel fc = FileChannel.open( diskRoot, StandardOpenOption.READ,
      StandardOpenOption.WRITE );

ByteBuffer bb = ByteBuffer.allocate( 4096 );

fc.position( 4096 );
fc.read( bb );
fc.position( 4096 );
fc.write( bb );

fc.close();

(answer taken from another (similar) question)

Problem

OK, so trust me there's a reason I want to do this. Maybe not using Java, but there is. I am able to raw access the disk on Windows 7 using the UNC-style paths, for example: ``` RandomAccessFile raf = null; try { raf = new RandomAccessFile("\\\\.\\PhysicalDrive0","r"); byte [] block = new byte [2048]; raf.seek(0); raf.readFully(block); System.out.println("READ BYTES RAW:\n" + new String(block)); } catch (IOException ioe) { System.out.println("File not found or access denied. Cause: " + ioe.getMessage()); return; } finally { try { if (raf != null) raf.close(); System.out.println("Exiting..."); } catch (IOException ioe) { System.out.println("That was bad."); } } ``` But if I switch to "rw" mode, a NullPointerException arises and even I run the program as an Administrator, I'm not getting the handle for raw writing to the disk. I know this has been asked already, but mainly for reading... so, what about writing? Do I need JNI? If so, any suggestions? Cheers

Original source

Related problems