Java examples for java.lang:String HTML
html Encode
/*/*from w ww . jav a2 s. c o m*/ * JasperReports - Free Java Reporting Library. * Copyright (C) 2001 - 2013 Jaspersoft Corporation. All rights reserved. * http://www.jaspersoft.com * * Unless you have purchased a commercial license agreement from Jaspersoft, * the following license terms apply: * * This program is part of JasperReports. * * JasperReports is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JasperReports is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with JasperReports. If not, see <http://www.gnu.org/licenses/>. */ /* * Contributors: * Gaganis Giorgos - gaganis@users.sourceforge.net */ //package com.java2s; public class Main { public static void main(String[] argv) { String text = "java2s.com"; System.out.println(htmlEncode(text)); } /** * */ public static String htmlEncode(String text) { if (text == null || text.length() == 0) { return text; } int length = text.length(); StringBuffer ret = new StringBuffer(length * 12 / 10); boolean isEncodeSpace = true; int last = 0; for (int i = 0; i < length; i++) { char c = text.charAt(i); switch (c) { case ' ': if (isEncodeSpace) { if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append(" "); isEncodeSpace = false; } else { isEncodeSpace = true; } break; case '&': if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append("&"); isEncodeSpace = false; break; case '>': if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append(">"); isEncodeSpace = false; break; case '<': if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append("<"); isEncodeSpace = false; break; case '\"': if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append("""); isEncodeSpace = false; break; // it does not work in IE // case '\'' : // if (last < i) // { // ret.append(text.substring(last, i)); // } // last = i + 1; // // ret.append("'"); // isEncodeSpace = false; // break; case '\n': if (last < i) { ret.append(text.substring(last, i)); } last = i + 1; ret.append("<br/>"); isEncodeSpace = false; break; default: isEncodeSpace = false; break; } } if (last < length) { ret.append(text.substring(last)); } return ret.toString(); } }