So I have and android app where i get an audio file from a server and write the file to my sdcard:
InputStream inputStream = resp.getEntity().getContent();
File mess = new File("sdcard/Music/message"+ i +".3gp");
OutputStream out = new FileOutputStream(mess);
int read = 0;
byte[] bytes = new byte[1024];
while ((read = inputStream.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
inputStream.close();
out.flush();
out.close();
However when I do this my file does not appear in the play music app. how can I fix this?
Try this code: