PPTX DOCX XLSX PDF ODP
Aspose.Email  for Java
MSG

Extract MSG Metadata via Java

Build your own Java apps to add, edit, remove or extract metadata from MSG files using server-side APIs.

How to Extract MSG Metadata Using Java

In order to get MSG file metadata, we’ll use

Aspose.Email for Java

API which is a feature-rich, powerful and easy to use metadata API for Java platform. You can download its latest version directly from

Maven

and install it within your Maven-based project by adding the following configurations to the pom.xml.

<h3>Repository</h3>

<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
<h3>Dependency</h3>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-email</artifactId>
<version>version of aspose-email API</version>
<classifier>jdk17</classifier>
</dependency>

Steps to Extract Metadata of MSG via Java

Get the type of the message while using GetProperties which in turn allows getting all metadata information via a simple loop.

  • Load the MSG file using MapiMessage.fromFile
  • Get properties collection using getProperties()
  • Access the relevant property like Subject using get_Item()

System Requirements

Aspose.Email for Java supports on all major platforms and Operating Systems. Please make sure that you have the following prerequisites.

  • Microsoft Windows or a compatible OS with Java Runtime Environment for JSP/JSF Application and Desktop Applications.
  • Get latest version of Aspose.Email for Java directly from Maven .
 

Extract Metadata of MSG - Java


MapiMessage outlookMessageFile = MapiMessage.fromFile(dataDir + "messageMapi.msg");

//Get the MapiProperties collection
MapiPropertyCollection coll = outlookMessageFile.getProperties();

//Access the MapiPropertyTag.PR_SUBJECT property
MapiProperty prop = (MapiProperty) coll.get_Item((Object) MapiPropertyTag.PR_SUBJECT);

//If the MapiProperty is not found, check the MapiProperty.PR_SUBJECT_W
//which is a unicode peer of MapiPropertyTag.PR_SUBJECT
if (prop == null) {
	prop = (MapiProperty) coll.get_Item(MapiPropertyTag.PR_SUBJECT_W);
}

//If it cannot be found
if (prop == null) {
	System.out.println("Mapi property could not be found.");
} else {
	//Get the property data as string
	String strSubject = prop.getString();
	System.out.println("Subject: " + strSubject);
}

//Read internet code page property
prop = (MapiProperty) coll.get_Item(MapiPropertyTag.PR_INTERNET_CPID);
if (prop != null) {
	System.out.println("Code page: " + prop.getLong());
}  
 
  • About Aspose.Email for Java API

    Aspose.Email is a Microsoft Outlook and Thunderbird formats parsing solution. One can easily create, manipulate, convert email and storage formats such as MSG, EMLX, EML and MHT. Handling of email attachments, customization of message headers and implementation of different network protocols like POP3, IMAP & SMTP to send & receive emails is much easier. Its a standalone API and does not require Microsoft Outlook or any other software installation.

    Extract Metadata of MSG via Online App

    View & edit Metadata to MSG documents by using our Live Demos with following benefits.

      No need to download or setup anything
      No need to write any code
      Just upload your MSG file & edit document properties
      Instantly get the download link for the resultant file

    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

    Other Supported Metadata Formats

    Using Java, One can also manipulate metadata of many other formats including

    EML (Outlook Email Messages)
    MBOX (Electronic Mail Messages)
    OST (Offline Storage Files)
    PST (Outlook Personal Storage Files)