码迷,mamicode.com
首页 > 编程语言 > 详细

java unicode转utf-8

时间:2015-07-20 17:08:21      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

public static String unicode2Utf8(String sourceStr) throws UnsupportedEncodingException
	{
		byte[] converttoBytes = sourceStr.getBytes("UTF-8");
	    String destStr = new String(converttoBytes, "UTF-8");
	    return destStr;
	}


java unicode转utf-8

标签:

原文地址:http://my.oschina.net/u/856051/blog/480798

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!