建议这些处理字符串的方法都写到一个公共类里,每次都会用到
存进数据库之前做字符串处理
public static String encodeHtml (String s){
char c[] = s.toCharArray();
char ch;
int i = 0;
StringBuffer buf = new StringBuffer();
while (i < c.length) {
ch = c[i++];
//System.out.println((int)(ch) + " ");
if (ch == '"')
buf.append(""");
else if (ch == '\'')
buf.append("''");
//else if (ch == '\\')
//buf.append("\\");
//else if (ch == '&')
//buf.append("&");
else if (ch == '<')
buf.append("<");
else if (ch == '>')
buf.append(">");
else if(ch == '\n'){
buf.append("
");
//}else if((int)ch == 13 && i+1 < c.length && (int)c[i++] == 10){
// buf.append("
");
}else
buf.append(ch);
}
return buf.toString();
}
如果只能单纯的记录换行的话。 处理数据的时候 str = str.replaceAll("\n","
"),记得是这样。。如果是输入文本的数量较多。。比如做类似邮件内容这样的话。。建议使用UEditor等在线HTML编辑器。不仅可以记录换行。还有各种字体,样式,图片等。
没明白你的问题,存数据和换行应该没什么关系吧
只需要你保存拥有页面的样式就ok了。