Does anyone know of a way to issue commands to a hard drive within Java? Does Java even support this kind of hardware interaction?
For example, if I have a SCSI hard dri
Java doesn't support talking directly to hardware like that. However, you can use JNI to call a C/C++ function from Java that can.