Forums Register Login

Problem in Reading email Body which contains Attachement.

+Pie Number of slices to send: Send
Hi All,

I want to read the body message and attachment of mail. But when I start reading mail if the mail contains the attachment only attachment content is being read. I am not able to read the body message.

Below is the code.
public void readEmails()
{
Store store = null;
Folder folder = null;
try
{
Properties properties = System.getProperties();
Session session = Session.getDefaultInstance(properties, null);
store = session.getStore(PROTOCOL);
store.connect(HOST, USERNAME, USERPASSWORD);
folder = store.getFolder(PROCESSFOLDER);
if (folder == null && !folder.exists())
{
System.out.println("Invalid folder ");
}
folder.open(Folder.READ_WRITE);
Message[] messages = folder.search(new FlagTerm(new Flags(Flags.Flag.SEEN), false));

// For Starting
for (int i = 0; i < messages.length; i++)
{
Message msg = messages[i];
String contentType = msg.getContentType();
String textMsg = "";
if (contentType.contains("text/html") || contentType.contains("text/plain"))
{
textMsg = msg.getContent().toString();
System.out.println("Text Msg 111::::::::: " + textMsg);
} else if (contentType.contains("multipart"))
{
Multipart multiPart = (Multipart) msg.getContent();
int partCount = multiPart.getCount();
System.out.println("Multipart Count::::::::::: "+partCount);
for (int j = 0; j < partCount; j++)
{
BodyPart part = multiPart.getBodyPart(j);
if (Part.ATTACHMENT.equalsIgnoreCase(part.getDisposition()))
{

System.out.println("Attachment data::::::: "+part.getFileName());
System.out.println("Attachment data::::::: "+part.getContent().toString());

} else
{
System.out.println(part.getContent()+"_______");
// not an attachment, maybe the body content of the message
textMsg = part.getContent() != null ? part.getContent().toString() : "";
System.out.println("Text Msg::::::::: " + textMsg);

}
}
}
}
} catch (Exception ex)
{
ex.printStackTrace();
}
}

Thanks
Pankaj singh
+Pie Number of slices to send: Send
In your JavaMail download there's a "demo" directory. In that directory you will find a program called "msgshow". What does it output when you run it on that message?

Hint: if you like its output better than your program's output, well, you have its source code right there...
+Pie Number of slices to send: Send
Duplicated at https://coderanch.com/t/593786/java/java/Reading-email-Body-which-contains. Closing this thread since the other one is resolved already.

Pankaj Singh Hari Om, please UseOneThreadPerQuestion.
F is for finger. Can you stick your finger in your nose? Doesn't that feel nice? Now try this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


Reply locked
This thread has been viewed 1169 times.
Similar Threads
problem reading the mail Attachment
connection failure exception
Handling E-mails With Attachments
Java mail attachmetnt include txt extensions
How can I download emails with attachments from Gmail with java programing..(error occur)
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 13:40:55.