您当前的位置:飞翔学院-IT中国 →
编程开发 →
JSP → 文章内容
jsp中关于html的转换
作者:佚名 来源:不详 发布时间:2007-11-29 23:49:42
作者:blackwhites
请看下面这个例子
public static String escapeHTMLTags( String input ) {
// Check if the string is null or zero length -- if so, return what was sent in.
if( input == null || input.length() == 0 ) {
return input;
}
// Use a StringBuffer in lieu of String concatenation -- it is much more efficient this way.
StringBuffer buf = new StringBuffer();
char ch = ´ ´;
for( int i=0; i<input.length(); i++ ) {
ch = input.charAt(i);
if( ch == ´<´ ) {
buf.append( "<" );
}
else if( ch == ´>´ ) {
buf.append( ">" );
}
else {
buf.append( ch );
}
}
return buf.toString();
}