问问题
4035 次
2 回答
0
You need to escape HTML properly. Unicode isn't the answer here. This link is your jam.
于 2012-09-25T20:23:24.943 回答
0
I don't know why this doesn't work (inside the above switch) (and would welcome an explanation):
case ((int)'\u0080'): sbOriginal.deleteCharAt(isb); break;
but this does:
description = description.replaceAll("\u0080", "");
于 2012-09-26T15:22:52.700 回答