1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/*
* @(#)XmlUtil.java
*
* Copyright (C) 2001,,2003 2002 Matt Albrecht
* groboclown@users.sourceforge.net
* http://groboutils.sourceforge.net
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package net.sourceforge.groboutils.util.xml.v1;
/**
* A Utility to aid in various XML activities.
*
* @author Matt Albrecht <a href="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
* @since May 21, 2001
* @version $Date: 2003/11/23 21:28:47 $
*/
public class XMLUtil
{
protected static XMLUtil s_instance = new XMLUtil();
// * [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] |
// * [#xE000-#xFFFD] | [#x10000-#x10FFFF]
//private static final char LOWER_RANGE_1 = 0x20;
//private static final char UPPER_RANGE_1 = 0xD7FF;
//private static final char LOWER_RANGE_2 = 0xE000;
//private static final char UPPER_RANGE_2 = 0xFFFD;
private static final char LOWER_RANGE = 0x20;
private static final char UPPER_RANGE = 0x7f;
// java doesn't support this range
// private static final char LOWER_RANGE_3 = 0x10000;
// private static final char UPPER_RANGE_3 = 0x10FFFF;
private static final char VALID_CHAR_1 = 0x9;
private static final char VALID_CHAR_2 = 0xA;
private static final char VALID_CHAR_3 = 0xD;
private static final char[] IN_RANGE_INVALID =
{ '<', '>', '"', '\'', '&' };
//private static final String IN_RANGE_INVALID_STR =
// new String( IN_RANGE_INVALID );
private static final String IN_RANGE_VALID[] =
{ "<", ">", """, "'", "&" };
protected XMLUtil()
{
// do nothing
}
public static XMLUtil getInstance()
{
return s_instance;
}
//------------------------------------------
/**
* Convert a standard Java String into an XML string. It transforms
* out-of-range characters (<, >, &, ", ', and non-standard
* character values) into XML formatted values. Since it does correctly
* escape the quote characters, this may be used for both attribute values
* as well as standard text.
*
* @param javaStr the Java string to be transformed into XML text. If
* the string is <tt>null</tt>, then <tt>null</tt> is returned.
* @return the XML version of <tt>javaStr</tt>.
* @see #utf2xml( String, StringBuffer )
*/
public String utf2xml( String javaStr )
{
if (javaStr == null)
{
return null;
}
StringBuffer sb = new StringBuffer();
utf2xml( javaStr, sb );
return sb.toString();
}
/**
* Convert a standard Java String into an XML string. It transforms
* out-of-range characters (<, >, &, ", ', and non-standard
* character values) into XML formatted values. Since it does correctly
* escape the quote characters, this may be used for both attribute values
* as well as standard text.
* <P>
* From <a href="http://www.w3c.org/TR/2000/REC-xml-20001006">
* the XML recommendation</a>:
* <PRE>
* [Definition: A parsed entity contains text, a sequence of characters,
* which may represent markup or character data.]
* [Definition: A character is an atomic unit of text as specified by
* ISO/IEC 10646 [ISO/IEC 10646] (see also [ISO/IEC 10646-2000]).
* Legal characters are tab, carriage return, line feed, and the legal
* characters of Unicode and ISO/IEC 10646. The versions of these standards
* cited in A.1 Normative References were current at the time this document
* was prepared. New characters may be added to these standards by
* amendments or new editions. Consequently, XML processors must accept
* any character in the range specified for Char. The use of
* "compatibility characters", as defined in section 6.8 of
* [Unicode] (see also D21 in section 3.6 of [Unicode3]), is discouraged.]
*
* Character Range
* [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] |
* [#xE000-#xFFFD] | [#x10000-#x10FFFF]
* // any Unicode character, excluding the surrogate blocks,
* FFFE, and FFFF. //
*
* The mechanism for encoding character code points into bit patterns may
* vary from entity to entity. All XML processors must accept the UTF-8
* and UTF-16 encodings of 10646; the mechanisms for signaling which of
* the two is in use, or for bringing other encodings into play, are
* discussed later, in 4.3.3 Character Encoding in Entities.
*
* ...
*
* The ampersand character (&) and the left angle bracket (<)
* may appear in their literal form only when used as markup delimiters, or
* within a comment, a processing instruction, or a CDATA section. If they
* are needed elsewhere, they must be escaped using either numeric
* character references or the strings "&amp;" and "&lt;"
* respectively. The right angle bracket (>) may be represented using the
* string "&gt;", and must, for compatibility, be escaped using
* "&gt;" or a character reference when it appears in the string
* "]]>" in content, when that string is not marking the end of a CDATA
* section.
* To allow attribute values to contain both single and double quotes, the
* apostrophe or single-quote character (') may be represented as
* "&apos;", and the double-quote character (") as "&quot;".
* </PRE>
*
* @param javaStr the Java string to be transformed into XML text. If
* it is <tt>null</tt>, then the text "null" is appended to the
* @param output the StringBuffer to send the transformed XML into.
*/
public void utf2xml( String javaStr, StringBuffer output )
{
if (output == null)
{
throw new IllegalArgumentException("No null StringBuffer");
}
if (javaStr == null)
{
// original:
// javaStr = "null";
// the string "null" does not have any out-of-range characters,
// so to optimize...
output.append("null");
return;
}
int len = javaStr.length();
// Ensure that the output string buffer has enough space.
// The given huristic seems to work well.
output.ensureCapacity( output.length() + (len * 2) );
// for efficiency, directly access the array.
char buf[] = javaStr.toCharArray();
for ( int pos = 0; pos < len; ++pos)
{
char c = buf[pos];
// test for out-of-range for escaping using &#
if (
// * [2] Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] |
// * [#xE000-#xFFFD] | [#x10000-#x10FFFF]
(c < LOWER_RANGE &&
c != VALID_CHAR_1 && c != VALID_CHAR_2 && c != VALID_CHAR_3)
||
(c > UPPER_RANGE)
)
{
output.append( "&#" );
output.append( Integer.toString( c ) );
output.append( ';' );
}
else
{
// should we escape the character with an &XXX; ?
boolean notfound = true;
for (int p2 = IN_RANGE_INVALID.length; --p2 >= 0;)
{
if (IN_RANGE_INVALID[p2] == c)
{
notfound = false;
output.append( IN_RANGE_VALID[ p2 ] );
break;
}
}
if (notfound)
{
// append the character as-is
output.append( c );
}
}
}
}
}
|