I have the mp3/mp4 files on Raw folder. I need to send these files to server side. I’m using MultipartRequestEntity (FilePart) for sending the files to server side. How to get the Raw folder files as FILE?
I have the mp3/mp4 files on Raw folder. I need to send these files
Share
You should be able to read from that file using something like
and then just read your standard input stream (I suggest wrapping it with buffering, e.g.
BurreredInputReader)