Как отправить аудиофайл в виде вложения в BlackBerry? - PullRequest
0 голосов
/ 15 декабря 2011

Как отправить аудиофайл в виде вложения в BlackBerry SDK 6?

1 Ответ

1 голос
/ 15 декабря 2011

Вы можете преобразовать аудиофайл в байтовый массив, а затем использовать следующий метод

public synchronized boolean sendMail(final byte []data,
                    final boolean licensed) 
            {    
            Folder[] folders = store.list(4);
            Folder sentfolder = folders[0];
            // create a new message and store it in the sent folder
            msg = new Message(sentfolder);
            multipart = new Multipart();
            textPart = new TextBodyPart(multipart,"Audio");
            Address recipients[] = new Address[1];
            try {

                    recipients[0] = new Address(address, "XYZ");
                    msg.addRecipients(Message.RecipientType.TO, recipients);
                    msg.setSubject("Audio"); 
                    try {
                            Thread thread = new Thread("Send mail") {
                                    public void run() {
                                            emailSenderIsBusy = true;
                                            try {


                                                        attach = new SupportedAttachmentPart(
                                                                    multipart, "application/octet-stream",
                                                                    "title",data);                                                      


                                                    multipart.addBodyPart(textPart);
                                                    multipart.addBodyPart(attach);
                                                    msg.setContent(multipart);
                                                    Transport.send(msg); 
                                            }
                                            catch(SendFailedException e)
                                            {

                                            } 
                                            catch (final MessagingException e) { 


                                            } 
                                            catch (final Exception e) { 

                                            }

                                    }           
                            };
                            thread.start(); 
                            return true;
                    } 
                    catch (final Exception e) 
                    { 

                    }
            }catch (final Exception e) {

            }

            return false;
    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...