Not sure if this is possible, but can I access the raw bytes of a compact disc using Java? If so could you provide a sample of code please? I am using Windows and don't mind platform specific code.

有帮助吗?

解决方案

I'm pretty sure you can't do it in Java. You will have to write native C code using Windows API (start with CreateFile as described here) and then call it using JNI from Java.

其他提示

You need to ask the operating system with a platform specific API - under Linux there is most likely a /dev file for this,

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top