I am looking for a solution to display msg-files saved from outlook in my Swing application. There seem to be plenty of solutions for parsing and writing msg-files, but none to actually display them on screen.
I want to have a preview panel that shows the mail as the user would see it in outlook (It doesn't need to be 100% the same. But if the mail contains HTML, images or attachments, I need them to be reasonably presented in the preview).
Preferably open source, but commercial products are also an option.
Edit: The main purpose is to display the file (in a search result pane), so the user may quickly glance at the contents of the mail without needing to do multiple mouse clicks for each file (double-click to open in outlook and afterwards click on close to get rid of the extra window). What I currently do is display the ASCII representation of that mail (extracted using Apache TIKA). Unfortunately there are many mails with inline images which do not show in the text preview. But Testers claim its insufficent to 'grasp' the contents quickly.
JEditoPanefits your definition of "reasonably presented" HTML, it would not be too hard to roll your own solution. – Andrew Thompson Nov 17 '11 at 2:58