J
jim2002
Unregistered / Unconfirmed
GUEST, unregistred user!
如
String content_show=rs.getField("content","");
//如果content为null,则为""
content_show=Html.deleteHtml(content_show);//去除Html语法。
if(content_show.length()>10)
content_show=content_show.substring(0,10);
out.println(content_show);
如果String content="截取字符串乱码,如何解块?" //其中逗号为英文半角。
则出现content_show="截取字符串乱码,如何?"
String content_show=rs.getField("content","");
//如果content为null,则为""
content_show=Html.deleteHtml(content_show);//去除Html语法。
if(content_show.length()>10)
content_show=content_show.substring(0,10);
out.println(content_show);
如果String content="截取字符串乱码,如何解块?" //其中逗号为英文半角。
则出现content_show="截取字符串乱码,如何?"