In two ways I tried, but Problem still persist.
POIFSFileSystem newDoc = new POIFSFileSystem();
EntryUtils.copyNodes(attachment.attachmentDirectory.getDirectory(),
newDoc.getRoot());
File fileToWrite = new File("C:/CR0040POC/detachedMail/" +
attachMsg.getConversationTopic()+".msg");
OutputStream outStream = new FileOutputStream(fileToWrite);
newDoc.writeFilesystem(outStream);
//In this way it is giving me error in opening file.
POIFSFileSystem newDoc =
attachment.attachmentDirectory.getDirectory().getFileSystem();
File fileToWrite = new File("C:/CR0040POC/detachedMail/" +
attachMsg.getConversationTopic()+".msg");
OutputStream outStream = new FileOutputStream(fileToWrite);
newDoc.writeFilesystem(outStream);
//In this way it is writting Complete msg (i.e. msg inside another msg)
--
View this message in context: http://apache-poi.1045710.n5.nabble.com/Read-msg-file-inside-other-msg-file-tp5710411p5710418.html
Sent from the POI - Dev mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org
|