Question

i am trying to send MMS using code sample from here. I am not sure I understand how to deal with MMSPart part and parts vars: where and how should they be filled?

Thanks in advance

Was it helpful?

Solution

MMSPart is internal class for keeping data. Checkout this example:

Declaration:

class MMSPart {
public String Name = "";
public String MimeType = "";
public byte[] Data;
}

Example:

...
final MMSPart samplePart = new MMSPart();
samplePart.Name = "sample";
samplePart.MimeType = "text/html"
samplePart.Data = "<b>Hello !</b>".getBytes();
...
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top