1 16 package dlog4j.util; 17 18 import org.apache.commons.lang.StringUtils; 19 20 24 public class HtmlUtil { 25 26 33 public static String makeHtml(String content, boolean useFaces, boolean useUbb){ 34 if(useFaces){ 35 } 36 if(useUbb){ 37 38 } 39 return convertToHtml(content); 40 } 41 42 public static String convertToHtml(String content){ 43 content = StringUtils.replace(content,"\t"," "); content = StringUtils.replace(content," "," "); content = StringUtils.replace(content,"\n","<br>"); return content; 47 } 48 49 public static void main(String [] args) { 50 51 System.out.println(convertToHtml("测 试 空 格")); 52 53 } 54 } 55 | Popular Tags |