Even though this piece of software is doing a good job, it got a little rusty and features needed to be added. Also I had to do some small fixes.
The SMS extractor is now able to output the extracted text messages into an XML formatted file. The following example will show the format that is being used:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?xml version="1.0" ?> <messages> <message type="SMS"> <address>0123 45678910</address> <time>09.05.2012 20:09:19</time> <text>This is an example text message.</text> </message> <message type="iMessage"> <address>+49 123 45678910</address> <time>06.08.2012 18:54:17</time> <text>This is an example iMessage.</text> </message> </messages> |
The format is valid XML, was however “randomly” chosen. If you need a different format, please use the updated standalone version (see below) and make your adaptions or send me a request to change the format.
Remaining TODOs are to implement the Android XML format as well as fix correct sender/receiver addresses for group chats.
You can retrieve the code of the updated standalone version here.
This work is licensed under a Creative Commons Attribution 3.0 Unported License.
In case you need instructions on how to work with the standalone version, please refer to the very original release post.
Also, naturally, the update was included in the online version of the extractor!