All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.util.encoder.CharEncoding Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

There is a newer version: 6.2.7
Show newest version
/**
 * 
 */
package org.frameworkset.util.encoder;

/**
 * @author yinbp
 *
 * @Date:2016-11-18 12:14:26
 */
public class CharEncoding {

	 /**
     * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
     * 

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String ISO_8859_1 = "ISO-8859-1"; /** * Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set. *

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String US_ASCII = "US-ASCII"; /** * Sixteen-bit Unicode Transformation Format, The byte order specified by a mandatory initial byte-order mark * (either order accepted on input, big-endian used on output) *

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String UTF_16 = "UTF-16"; /** * Sixteen-bit Unicode Transformation Format, big-endian byte order. *

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String UTF_16BE = "UTF-16BE"; /** * Sixteen-bit Unicode Transformation Format, little-endian byte order. *

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String UTF_16LE = "UTF-16LE"; /** * Eight-bit Unicode Transformation Format. *

* Every implementation of the Java platform is required to support this character encoding. * * @see Standard charsets */ public static final String UTF_8 = "UTF-8"; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy