Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. private void writeAudioFile(byte[] arrayByte, String name) throws
  2. IOException {
  3. FileOutputStream outputStream = new FileOutputStream(name);
  4. outputStream.write(arrayByte);
  5. outputStream.close();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement