Hi all,
I'm adding the ability to attach notes to objects in one of my apps, so it would be an EditText view receiving the typed input, a string saving it temporarily, then saving the string in a Map object that is saved to a file using File.WriteMap.
My main question is: Should I be enforcing a max length? That is, if I don't, is something likely to blow up beyond NNN characters?
Related question: Do I need to make sure that delimiter characters like double quotes in the text don't screw things up? (e.g. replace a double quote with %20 like HTML does, and then restore it later on load)?
Thanks!
I'm adding the ability to attach notes to objects in one of my apps, so it would be an EditText view receiving the typed input, a string saving it temporarily, then saving the string in a Map object that is saved to a file using File.WriteMap.
My main question is: Should I be enforcing a max length? That is, if I don't, is something likely to blow up beyond NNN characters?
Related question: Do I need to make sure that delimiter characters like double quotes in the text don't screw things up? (e.g. replace a double quote with %20 like HTML does, and then restore it later on load)?
Thanks!