Hi all! I have created a mail folder named "Bakup" on my mail server with java mail API.When I send mail to someone,I want to bakup it.I don't know how to start,can you help me? Thank you very much!! ------------------ Java lover from hell!
Java lover from hell!
Rohan Baweja
Ranch Hand
Joined: Aug 19, 2001
Posts: 31
posted
0
Solution : When you are creating the message and right before you are about to transport it you can write the message to a text file e.g. in your case call it backup.txt Use this code : message.writeTo( new FileOutputStream("backup.txt") );
Metal Zhang
Ranch Hand
Joined: Aug 05, 2001
Posts: 52
posted
0
Thanx for your reply.Your advice is very good!
Originally posted by rohan baweja: Solution : When you are creating the message and right before you are about to transport it you can write the message to a text file e.g. in your case call it backup.txt Use this code : message.writeTo( new FileOutputStream("backup.txt") );
------------------ Java lover from hell! [This message has been edited by Metal Zhang (edited August 19, 2001).]
Rohan Baweja
Ranch Hand
Joined: Aug 19, 2001
Posts: 31
posted
0
You are welcome Metal Zhang. I was also facing the same problem till about a week back and I bumped into this question in some other forum. Actually I have a problem which is an extension to Metal's problem. My question is : Can Mail Messages recieved from a pop mailbox be stored as an ARRAY of messages in a single file on the local machine? If the answer is yes, I would be grateful if you could tell me. And also how can those messages be read as an array later from the backup file.