Question:
if i use
CkString str = new CkString();
mailman.get_Pop3SessionLog(str);
String string = str.getString();
then in the String i have some "\r\n" if i use the String then for the Android Logcat i see nothing. But if i write
str.replace("\r"," ");
i can see the String. For Example: the mailman.lastErrorText() has not the same Problem!!