-1

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?

Wawan Ma-chun
  • 115
  • 3
  • 15

2 Answers2

0

I think what you're looking for is JNI.

m0skit0
  • 25,268
  • 11
  • 79
  • 127
  • 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

Community
  • 1
  • 1
kaliatech
  • 17,579
  • 5
  • 72
  • 84