Create an email object in java and save it to file

后端 未结 2 1984
执笔经年
执笔经年 2020-12-16 06:22

i need to backup the emails contained in a PST file (outlook storage). i\'m using libpst which is the only free library i found on the web ( http://code.google.com/p/java-li

2条回答
  •  离开以前
    2020-12-16 07:17

    You create a Message object the same way you would create one for sending, but instead of sending it you write it to a file. You don't need an email server. There's lots of examples of creating messages in the demo programs included with the JavaMail download, and in the JavaMail FAQ. See the Message.writeTo method to write the message to a file (Message is a Part, and writeTo is on Part).

提交回复
热议问题