HTML Encode : Document HTML « Development Class « Java






HTML Encode

/* * HTMLEncode.java * * Created on 2007-9-15, 21:24:34 * Copyright (C) 2006,2007 Yong Li. All rights reserved. This library 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 2.1 of the License, or (at your option) any later version. This library 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 this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *///package com.teesoft.util; /** * * @author wind */import java.util.Hashtable; publicclass HTMLEncode { private HTMLEncode() { } protectedstaticsynchronizedvoid buildEntityTables() { entityTableEncode = new Hashtable(ENTITIES.length); for (int i = 0; i < ENTITIES.length; i += 2) { if (!entityTableEncode.containsKey(ENTITIES[i])) { entityTableEncode.put(ENTITIES[i], ENTITIES[i + 1]); } } } publicstaticfinal String encode(String s) { return encode(s, "\n<br>"); } publicstaticfinal String encode(String s, String cr) { if (entityTableEncode == null) { buildEntityTables(); } if (s == null) { return""; } StringBuffer sb = new StringBuffer(s.length() * 2); for (int i = 0; i < s.length(); i++) { char ch = s.charAt(i); if (ch >= '?' && ch <= 'Z' || ch >= 'a' && ch <= 'z' || ch == ' ') { sb.append(ch); continue; } if (ch == '\n') { sb.append(cr); continue; } String chEnc = encodeSingleChar(String.valueOf(ch)); if (chEnc != null) { sb.append(chEnc); } else { sb.append("&#"); sb.append((newInteger(ch)).toString()); sb.append(';'); } } return sb.toString(); } publicstaticfinal String escape(String s) { if (entityTableEncode == null) { buildEntityTables(); } if (s == null) { return""; } StringBuffer sb = new StringBuffer(s.length() * 2); for (int i = 0; i < s.length(); i++) { char ch = s.charAt(i); if (ch >= '?' && ch <= 'Z' || ch >= 'a' && ch <= 'z' || ch == ' ') { sb.append(ch); continue; } String chEnc = encodeSingleChar(String.valueOf(ch)); if (chEnc != null) { sb.append(chEnc); } else { sb.append(ch); } } return sb.toString(); } privatestatic String encodeSingleChar(String ch) { return (String) entityTableEncode.get(ch); } privatestaticfinal String[] ENTITIES = { ">", "&gt;", "<", "&lt;", "[", "&#91;<b>", "]", "</b>&#93;", "&", "&amp;", "\"", "&quot;", "'", "&#039;", "\\", "&#092;", "\251", "&copy;", "\256", "&reg;" }; privatestatic Hashtable entityTableEncode = null; } 








Related examples in the same category

1.HTMLDocument: Element Iterator Example
2.HTMLEditorKit DemoHTMLEditorKit Demo
3.SimpleAttributeSet ExampleSimpleAttributeSet Example
4.Text Tab SampleText Tab Sample
5.Styled DocumentStyled Document
6.Html utils for working with tag's names and attributes.
7.Escape HTML
8.Escape HTML
9.Encode HTML
10.Replace all the occurences of HTML escape strings with the respective characters.
11.HTML Rewriter
12.XMLWriter is a generic class that provides common behavior to writers of a tagged language such as XML, WordML and HTML.
13.Escape html entities.
14.Html Encoder
15.Remove Comment
close