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

com.jfinal.weixin.sdk.utils.Charsets Maven / Gradle / Ivy

package com.jfinal.weixin.sdk.utils;

import java.nio.charset.Charset;

/**
 * 字符集工具类
 * Author: L.cm
 * Date: 2016年3月29日 下午3:44:52
 */
public class Charsets {

    // 字符集GBK
    public static final Charset GBK = Charset.forName("GBK");
    // 字符集ISO-8859-1
    public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    // 字符集utf-8
    public static final Charset UTF_8 = Charset.forName("UTF-8");

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy