Problem with non-ASCII characters
Status: Beta
Brought to you by:
dereulenspiegel
Although the exported roster xml is anotated as UTF-8, it doesn't seem to really be. Non-ASCII characters (in my case, Polish diactrics) are mangled during export.
Proper UTF-8 handling should fix this (and should be easy - just set the xml stream writter properly).
use
OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(path),"UTF-8");
instead of FileWriter in src/de/goesberserk/xmpp/utils/RosterExport.java line 89.