DOCX
JPG
PDF
XML
VCF
MHTML
Convert VCF to MHTML in Java
Native VCF to MHTML conversion using Java Email library, without needing any additional software.
How to Convert VCF to MHTML Using Java
In order to render VCF to MHTML, we’ll use
API which is a feature-rich, powerful and easy to use conversion API for Java platform. You can download its latest version directly from
and install it within your Maven-based project by adding the following configurations to the pom.xml.
Repository
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-email</artifactId>
<version>version of aspose-email API</version>
<classifier>jdk17</classifier>
</dependency>
Steps to Convert VCF to MHTML via Java
Java programmers can easily convert VCF file to MHTML in just a few lines of code.
- Load VCF file with Aspose.Email for Java MailMessage.load.
- Call the save() method.
- Pass the output file path with (MHTML) file extension.
- Open MHTML file in compatible program.
System Requirements
Before running the Java conversion code, 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 .
Convert VCF to MHTML - Java
//Load VCF Contact
MapiContact contact = MapiContact.fromVCard("sourceFile.vcf");
ByteArrayOutputStream os = new ByteArrayOutputStream();
contact.save(os, ContactSaveFormat.Msg);
MapiMessage msg = MapiMessage.fromStream(new ByteArrayInputStream(os.toByteArray()));
MailConversionOptions op = new MailConversionOptions();
MailMessage eml = msg.toMailMessage(op);
//Prepare the MHT format options
MhtSaveOptions mhtSaveOptions = new MhtSaveOptions();
mhtSaveOptions.setCheckBodyContentEncoding(true);
mhtSaveOptions.setPreserveOriginalBoundaries(true);
mhtSaveOptions.setMhtFormatOptions(MhtFormatOptions.RenderVCardInfo | MhtFormatOptions.WriteHeader);
mhtSaveOptions.setRenderedContactFields(ContactFieldsSet.NameInfo | ContactFieldsSet.PersonalInfo | ContactFieldsSet.Telephones | ContactFieldsSet.Events);
eml.save("output.mhtml", mhtSaveOptions);
VCF to MHTML Conversion Live Demos
Other Supported Conversions
You can also convert VCF into many other file formats including few listed below.
VCF TO EML (Outlook Email Messages)
VCF TO EMLX (Apple EMLX Format)
VCF TO HTML (Hyper Text Markup Language)
VCF TO ICS (iCalendar)
VCF TO MBOX (Electronic Mail Messages)
VCF TO MSG (Outlook & Exchange Format)
VCF TO OFT (Outlook Email Templates)
VCF TO OST (Offline Storage Files)
VCF TO PST (Outlook Personal Storage Files)