当前位置: 首页>>代码示例>>Java>>正文


Java NumericEntityEscaper类代码示例

本文整理汇总了Java中org.apache.commons.lang3.text.translate.NumericEntityEscaper的典型用法代码示例。如果您正苦于以下问题:Java NumericEntityEscaper类的具体用法?Java NumericEntityEscaper怎么用?Java NumericEntityEscaper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


NumericEntityEscaper类属于org.apache.commons.lang3.text.translate包,在下文中一共展示了NumericEntityEscaper类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testEscapeXmlAllCharacters

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
@Test
public void testEscapeXmlAllCharacters() {
    // http://www.w3.org/TR/xml/#charsets says:
    // Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF] /* any Unicode character,
    // excluding the surrogate blocks, FFFE, and FFFF. */
    final CharSequenceTranslator escapeXml = StringEscapeUtils.ESCAPE_XML
            .with(NumericEntityEscaper.below(9), NumericEntityEscaper.between(0xB, 0xC), NumericEntityEscaper.between(0xE, 0x19),
                    NumericEntityEscaper.between(0xD800, 0xDFFF), NumericEntityEscaper.between(0xFFFE, 0xFFFF), NumericEntityEscaper.above(0x110000));

    assertEquals("�", escapeXml.translate("\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0008"));
    assertEquals("\t", escapeXml.translate("\t")); // 0x9
    assertEquals("\n", escapeXml.translate("\n")); // 0xA
    assertEquals("", escapeXml.translate("\u000B\u000C"));
    assertEquals("\r", escapeXml.translate("\r")); // 0xD
    assertEquals("Hello World! Ain't this great?", escapeXml.translate("Hello World! Ain't this great?"));
    assertEquals("", escapeXml.translate("\u000E\u000F\u0018\u0019"));
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:18,代码来源:StringEscapeUtilsTest.java

示例2: toHtml

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
/**
    * Converts special characters to their HTML values. <br>
    * Example : "�" is converted to "&amp;eacute;"
    * <p>
    * 
    * @param string
    *            A String to convert from original to HTML
    *            <p>
    * @return A String of char converted to HTML equivalent.
    * 
    */

   public static String toHtml(String string) {
	
if (DO_NOTHING) return string;

string = StringEscapeUtils.ESCAPE_HTML4.with(NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) ).translate(string); 

if (string != null) {
    string = string.replaceAll("&amp;", "&"); // To keep same result if
					      // multi-call
}

return string;
   }
 
开发者ID:kawansoft,项目名称:aceql-http,代码行数:26,代码来源:HtmlConverter.java

示例3: toHtml

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
/**
    * Converts special characters to their HTML values. <br>
    * Example : "�" is converted to "&amp;eacute;"
    * <p>
    * 
    * @param string
    *            A String to convert from original to HTML
    *            <p>
    * @return A String of char converted to HTML equivalent.
    * 
    */

   public static String toHtml(String string) {
	
if (DO_NOTHING) return string;

string = org.apache.commons.lang3.StringEscapeUtils.ESCAPE_HTML4.with(NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) ).translate(string); 

if (string != null) {
    string = string.replaceAll("&amp;", "&"); // To keep same result if
					      // multi-call
}

return string;
   }
 
开发者ID:kawansoft,项目名称:awake-file,代码行数:26,代码来源:HtmlConverter.java

示例4: testEscapeXmlSupplementaryCharacters

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
/**
 * Tests Supplementary characters. 
 * <p>
 * From http://www.w3.org/International/questions/qa-escapes
 * </p>
 * <blockquote>
 * Supplementary characters are those Unicode characters that have code points higher than the characters in
 * the Basic Multilingual Plane (BMP). In UTF-16 a supplementary character is encoded using two 16-bit surrogate code points from the
 * BMP. Because of this, some people think that supplementary characters need to be represented using two escapes, but this is incorrect
 * - you must use the single, code point value for that character. For example, use &#x233B4; rather than &#xD84C;&#xDFB4;.
 * </blockquote>
 * @see <a href="http://www.w3.org/International/questions/qa-escapes">Using character escapes in markup and CSS</a>
 * @see <a href="https://issues.apache.org/jira/browse/LANG-728">LANG-728</a>
 */
@Test
public void testEscapeXmlSupplementaryCharacters() {
    final CharSequenceTranslator escapeXml = 
        StringEscapeUtils.ESCAPE_XML.with( NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) );

    assertEquals("Supplementary character must be represented using a single escape", "&#144308;",
            escapeXml.translate("\uD84C\uDFB4"));
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:23,代码来源:StringEscapeUtilsTest.java

示例5: testEscapeXmlSupplementaryCharacters

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
/**
 * Tests Supplementary characters. 
 * <p>
 * From http://www.w3.org/International/questions/qa-escapes
 * </p>
 * <blockquote>
 * Supplementary characters are those Unicode characters that have code points higher than the characters in
 * the Basic Multilingual Plane (BMP). In UTF-16 a supplementary character is encoded using two 16-bit surrogate code points from the
 * BMP. Because of this, some people think that supplementary characters need to be represented using two escapes, but this is incorrect
 * - you must use the single, code point value for that character. For example, use &#x233B4; rather than &#xD84C;&#xDFB4;.
 * </blockquote>
 * @see <a href="http://www.w3.org/International/questions/qa-escapes">Using character escapes in markup and CSS</a>
 * @see <a href="https://issues.apache.org/jira/browse/LANG-728">LANG-728</a>
 */
@Test
public void testEscapeXmlSupplementaryCharacters() {
    CharSequenceTranslator escapeXml = 
        StringEscapeUtils.ESCAPE_XML.with( NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) );

    assertEquals("Supplementary character must be represented using a single escape", "&#144308;",
            escapeXml.translate("\uD84C\uDFB4"));
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:23,代码来源:StringEscapeUtilsTest.java

示例6: testEscapeXmlSupplementaryCharacters

import org.apache.commons.lang3.text.translate.NumericEntityEscaper; //导入依赖的package包/类
/**
 * Tests Supplementary characters.
 * <p>
 * From http://www.w3.org/International/questions/qa-escapes
 * </p>
 * <blockquote>
 * Supplementary characters are those Unicode characters that have code points higher than the characters in
 * the Basic Multilingual Plane (BMP). In UTF-16 a supplementary character is encoded using two 16-bit surrogate code points from the
 * BMP. Because of this, some people think that supplementary characters need to be represented using two escapes, but this is incorrect
 * - you must use the single, code point value for that character. For example, use &amp;&#35;x233B4&#59; rather than
 * &amp;&#35;xD84C&#59;&amp;&#35;xDFB4&#59;.
 * </blockquote>
 * @see <a href="http://www.w3.org/International/questions/qa-escapes">Using character escapes in markup and CSS</a>
 * @see <a href="https://issues.apache.org/jira/browse/LANG-728">LANG-728</a>
 */
@Test
public void testEscapeXmlSupplementaryCharacters() {
    final CharSequenceTranslator escapeXml =
        StringEscapeUtils.ESCAPE_XML.with( NumericEntityEscaper.between(0x7f, Integer.MAX_VALUE) );

    assertEquals("Supplementary character must be represented using a single escape", "&#144308;",
            escapeXml.translate("\uD84C\uDFB4"));

    assertEquals("Supplementary characters mixed with basic characters should be encoded correctly", "a b c &#144308;",
                    escapeXml.translate("a b c \uD84C\uDFB4"));
}
 
开发者ID:ManfredTremmel,项目名称:gwt-commons-lang3,代码行数:27,代码来源:StringEscapeUtilsTest.java


注:本文中的org.apache.commons.lang3.text.translate.NumericEntityEscaper类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。