In one of my application, I have to parse the MMS content. I am able to get the encoded MMS content in the form of byte[]. Now I have to decode this byte[] and need to extract all the content based on their content types and header values. But I am struggling here. I don't know how to start decoding...

Any help will be appreciated.

link|improve this question

79% accept rate
feedback

1 Answer

you have the content in byte[] so you can try this:

byte[] buffer;
String incomingNumber = new String(buffer);
int indx = incomingNumber.indexOf("/TYPE");
if(indx>0 && (indx-15)>0){
   int newIndx = indx - 15;
   incomingNumber = incomingNumber.substring(newIndx, indx);
   indx = incomingNumber.indexOf("+");
   if(indx>0){
   incomingNumber = incomingNumber.substring(indx);
}

you can continue to parse like this.

link|improve this answer
I am not getting your idea. would you explain in detail or any related link? – Balaji.K Sep 7 '11 at 13:08
1  
are you fetching the MMS content from the inbox or you are parsing the data for newly arrived mms thru listener.? – Vineet Shukla Sep 7 '11 at 13:10
1  
thru listener(BroadcastReceiver) – Balaji.K Sep 7 '11 at 13:13
1  
then the above code is perfectly working as I have done this. you can check this link for more clearity:lovingandroid.blogspot.com/2011/07/mms-listener.html – Vineet Shukla Sep 7 '11 at 13:14
it extract only number,but i need to extract the body content of the mms.For example if the received mms consists the images as well as text,then have to extract image separately and text separately. – Balaji.K Sep 7 '11 at 13:21
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.