I ran into this issue due to non ascii characters in the recovery file. The exporter for some reason stuck them in the file… To fix this I did the following:
# perl -i.bak -pe ‘s/[^[:ascii:]]//g’ *.xml
This stripped out all of the non ascii chars from the xml files and the import then worked successfully.