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

com.hb0730.commons.lang.Charsets Maven / Gradle / Ivy

There is a newer version: 2.1.2-RELEASE
Show newest version
package com.hb0730.commons.lang;

import java.nio.charset.Charset;

/**
 * 编码
 *
 * @author bing_huang
 * @since 1.0.1
 */
public class Charsets {

    /**
     * 获取编码,参数为空时返回默认编码
     *
     * @param charset 编码
     * @return 编码
     */
    public static Charset toCharset(final Charset charset) {
        return charset == null ? Charset.defaultCharset() : charset;
    }

    /**
     * 获取编码
     *
     * @param charset 编码
     * @return 编码
     */
    public static Charset toCharset(final String charset) {
        return charset == null ? Charset.defaultCharset() : Charset.forName(charset);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy