I'm already finished my code using delphi,but then i was wondering if i can use mmio windows function in java to read .wav file, is it even possible? if yes can u give me lead, because i can't found any source to get started?
Asked
Active
Viewed 138 times
2 Answers
0
-
Then by default java can't right? thanks i'll try to learn this method – Wawan Ma-chun Jul 16 '13 at 12:56
-
What you're asking can only be done with **native** code. Java can only run in a JVM. JNI is the standard Java way to interface with native libraries. This doesn't mean Java can't do that, but means you need native libraries and you can interface with those from Java through JNI. – m0skit0 Jul 16 '13 at 14:03
0
Not clear what you are asking. MMIO typically refers to reading memory off of devices or reading from memory-mapped files. i.e. MMIODevice
You can process .wav files in Java to produce sound using multiple methods. Some examples: Reading wav file in Java