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

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