Archived Forum Post

Index of archived forum posts

Question:

small error/issue in mailman.get_Pop3SessionLog()

Dec 21 '15 at 10:31

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!!