M M0TRIX Lurker Feb 17, 2015 #1 hello. i was looking for a project(sample code) for converting sound to binary and binary to sound...!! couldn't find it... so if you have sample code.please share with me. or not help me with it which steps do i need to code this program??
hello. i was looking for a project(sample code) for converting sound to binary and binary to sound...!! couldn't find it... so if you have sample code.please share with me. or not help me with it which steps do i need to code this program??
Unforgiven ...eschew obfuscation... Administrator Feb 17, 2015 #3 Application Development thread moved to the Development forum for better exposure.
M M0TRIX Lurker Feb 17, 2015 #4 tnx for replaying. i mean zeros and ones. for example i say "hello" and it prints "11011"
Mad Willie Newbie Feb 18, 2015 #5 Java: File file = new File("file.mp3"); byte[] fileData = new byte[(int) file.length()]; DataInputStream dis = new DataInputStream(newFileInputStream(file)); dis.readFully(fileData); dis.close();
Java: File file = new File("file.mp3"); byte[] fileData = new byte[(int) file.length()]; DataInputStream dis = new DataInputStream(newFileInputStream(file)); dis.readFully(fileData); dis.close();