Hi
I'm walking through a messageparser object that I know has a lot of UTF strings in, I just don't know how many.
I'm currently using this code, relying on the error generated when I try and get a string that's not there.
It works, but is there a method I could call that says I've reached the end of the messageparser?
Thanks
Simon
do{
folderName = messageParser.readUTF();
ogscript.debug(folderName);
folders.push(folderName);
}while (folderName!=null);
}
catch(err)
{
}