I'm doing a project in java which requires me to encrypt a wave file. So, is there a straight forward process to convert a wave file into binary and back? I'll be applying an encryption algorithm on the binary data.
|
show 1 more comment
feedback
|
|
Yes.
Of course assuming it's still a valid wav file after you play around with the data. | |||||||||||||||||
feedback
|
|
Most languages have utilities to read and write files in binary mode. If you happen to be on a Linux system, it's the same as character mode. In any case, it's not a matter of "converting" to binary, just a different method of reading it. | |||
|
feedback
|
|
Try the Java Wav IO library. | |||
|
feedback
|
byte[]? Why does it matter that it's specifically a .wav file? – Oli Charlesworth Jun 15 '11 at 13:33bytearray... – Oli Charlesworth Jun 15 '11 at 13:42