Here you can find the source of toHTMLString(String s)
public static String toHTMLString(String s)
//package com.java2s; /**//from w ww . j a va 2 s . co m * Copyright 2013 ?????? * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class Main { public static String toHTMLString(String s) { StringBuffer stringbuffer = new StringBuffer(); for (int i = 0; s != null && i < s.length(); i++) { char c = s.charAt(i); if (c == '\'') // stringbuffer.append("'"); stringbuffer.append(c); else if (c == '"') // stringbuffer.append("""); stringbuffer.append(c); else if (c == '\n') stringbuffer.append("<BR>\n"); else if (c == '\t') stringbuffer.append(" "); else if (c == '<') // stringbuffer.append("<"); stringbuffer.append(c); else if (c == '>') // stringbuffer.append(">"); stringbuffer.append(c); else if (c == '&') stringbuffer.append("&"); else stringbuffer.append(c); } return stringbuffer.toString(); } }