Java OutlookExpress Reader Code
Read Outlook Express .dbx files and parse information from them.
Status: Beta
Brought to you by:
wolf1oo
OEReader - Parses Outlook Express .dbx files Copyright (C) 2013 Alex Franchuk ===== License ===== OEReader is released under the GPL license, version 3: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. ===== Description ===== The OEReader package is a set of structure-like classes that load data from an Outlook Express .dbx database file and can parse the data accordingly. The project is an implementation in Java of the .dbx file format that was found by the work of Arne Schloh: http://oedbx.aroh.de/ The main class, OEReader, is used to load a file and read the messages from it, whereas the other classes are subclasses that are used either in parsing or in structuring the extracted data. Each class stores extracted data in a number of public variables which can be extracted by the user. NOTE: This parser is NOT complete. It is missing the implementation of the Deleted and Conditions objects. ===== Libraries ===== This package uses only Java standard libraries; no external libraries are needed on the classpath! ===== Usage ===== Download and open the javadoc folder in the master branch, or read the javadoc online at http://java-oe-reader.sourceforge.net Generally, you want to create an OEReader object, load a file with the open(...) method, and then call getMessages() or getFolders() to retrieve information from the .dbx Outlook Express file. ===== Contact ===== Email me at: alex.franchuk@gmail.com or find the project at: https://sourceforge.net/projects/java-oe-reader/