标签:
public static String unicode2Utf8(String sourceStr) throws UnsupportedEncodingException { byte[] converttoBytes = sourceStr.getBytes("UTF-8"); String destStr = new String(converttoBytes, "UTF-8"); return destStr; }
标签:
原文地址:http://my.oschina.net/u/856051/blog/480798