Package email.converter

Source Code of email.converter.AsposeOSTtoPST

package email.converter;

import com.aspose.email.FileFormat;
import com.aspose.email.PersonalStorage;

public class AsposeOSTtoPST
{
  public static void main(String[] args)
  {
    PersonalStorage ost = PersonalStorage.fromFile("data/outlook.ost");

    ost.saveAs("data/AsposeOST-PST.pst", FileFormat.Pst);
    System.out.println("Done");
  }
}
TOP

Related Classes of email.converter.AsposeOSTtoPST

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.