![JAR search and dependency download from the Maven repository](/logo.png)
com.jchanghong.core.convert.impl.CharsetConverter Maven / Gradle / Ivy
The newest version!
package com.jchanghong.core.convert.impl;
import java.nio.charset.Charset;
import com.jchanghong.core.convert.AbstractConverter;
import com.jchanghong.core.util.CharsetUtil;
/**
* 编码对象转换器
* @author Looly
*
*/
public class CharsetConverter extends AbstractConverter {
private static final long serialVersionUID = 1L;
@Override
protected Charset convertInternal(Object value) {
return CharsetUtil.charset(convertToStr(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy