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

com.taobao.api.internal.toplink.endpoint.protocol.CompatibleUtil Maven / Gradle / Ivy

The newest version!
package com.taobao.api.internal.toplink.endpoint.protocol;

import java.io.UnsupportedEncodingException;

public class CompatibleUtil {
	public static String newString(byte[] data, String charset) {
		try {
			return new String(data, charset);
		} catch (UnsupportedEncodingException e) {
			throw new RuntimeException(e);
		}
	}
	
	public static byte[] getBytes(String input, String charset) {
		try {
			return input.getBytes(charset);
		} catch (UnsupportedEncodingException e) {
			throw new RuntimeException(e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy