• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to send java mail with big file attached

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have written an application using java swings and java mail to send .zip file as an attachment through java mail. The zip file contains mp3 files. I am selecting the zip file from local disk using jfilechooser. The application working perfectly, but it is taking 10 to 15 minutes to send mail with 2mb file attached.

the code to attach file is:




is there any way we can increase the performance.
Please reply to this post i am trying it from last 3 day's without success.
 
Ranch Hand
Posts: 73
Android Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Vishal,

One way to increase performace is to do the attachment activity in seperate thread for each attachment.
The only thing you might need to watch out for is weather all the attachments have been attached when user tries to send the mail.

Hope this helps.
 
reply
    Bookmark Topic Watch Topic
  • New Topic