Java API to Render MSG to TEXT
Export MSG to TEXT by using on premise Java API without using any third party dependencies
How to Render MSG to TEXT Using Java
Email conversion is a powerful feature that Java developers can integrate within any Java J2SE, J2EE, J2ME applications via Aspose.Total for Java . By using two APIs within the package you can convert Email MSG to TEXT without any third party dependencies. Firstly, you can use Email Manipulation API Aspose.Email for Java to convert MSG file format to HTML. Secondly, you can render HTML to TEXT by using Document Processing API Aspose.Words for Java .MSG to TEXT Conversion on Java
- Open MSG file using MailMessage class
- Convert MSG to HTML by using save method
- Load HTML by using Document class
- Save the document to TEXT format using save method and set TEXT as SaveFormat
Get Started with Java File Format APIs
You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.Words for Java and Aspose.Email for Java in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
Java Code for MSG to TEXT Rendering
MailMessage message = MailMessage.load("sourceFile.msg");
// save MSG as a HTML
message.save("HtmlOutput.html", SaveOptions.getDefaultHtml());
// load HTML with an instance of Document
Document document = new Document("HtmlOutput.html");
// call save method while passing SaveFormat.TEXT
document.save("output.text", SaveFormat.TEXT);
MSG What is MSG File Format?
MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. Such messages may contain one or more email fields, with the sender, recipient, subject, date, and message body, or contact information, appointment particulars, and one or more task specifications. The properties that constitute the Message object, including are also a part of the MSG file. MSG file has headers, main message body, and hyperlinks as plain ASCII text. MSG files are also suitable with the programs that need Microsoft’s Messaging Applications Programming Interface (MAPI).
Read More