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

com.github.hugh.constant.CharsetCode Maven / Gradle / Ivy

There is a newer version: 2.7.14
Show newest version
package com.github.hugh.constant;

/**
 * 字符编码
 *
 * @author hugh
 * @since 1.3.5
 */
public class CharsetCode {
    private CharsetCode(){}

    /**
     * utf-8
     */
    public static final String UTF_8 = "UTF-8";

    /**
     * utf-16
     */
    public static final String UTF_16 = "UTF-16";

    /**
     * gbk
     */
    public static final String GBK = "GBK";

    /**
     * GB2312
     */
    public static final String GB_2312 = "GB2312";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy