将String转化成HTML格式

一个String显示在网页上,不会安置原来的格式显示,比如说,回车符在网页上就显示成了一个空格,
下面这个方法可以将String改为HTML可以辨认的格式。
public static String toHTMLString(String in) {
        StringBuffer out = new StringBuffer();
        for (int i = 0; in != null && i < in.length(); i++) {
            char c = in.charAt(i);
            if (c == '/'')
                out.append("'");
            else if (c == '/"')
                out.append(""");
            else if (c == '<')
                out.append("<");
            else if (c == '>')
                out.append(">");
            else if (c == '&')
                out.append("&");
            else if (c == ' ')
                out.append(" ");
            else if (c == '/n')
                out.append("
");
            else
                out.append(c);
        }
        return out.toString();
    }

你可能感兴趣的:(java语言,string,html,c,null)