将字符串的编码格式转换为utf-8

/**
 * 将字符串的编码格式转换为utf-8
 * 
 * @param str
 * @return Name = new
 * String(Name.getBytes("ISO-8859-1"), "utf-8");
 */
public static String toUTF8(String str) {
	if (isEmpty(str)) {
		return "";
	}
	try {
		if (str.equals(new String(str.getBytes("GB2312"), "GB2312"))) {
			str = new String(str.getBytes("GB2312"), "utf-8");
			return str;
		}
	} catch (Exception exception) {
	}
	try {
		if (str.equals(new String(str.getBytes("ISO-8859-1"), "ISO-8859-1"))) {
			str = new String(str.getBytes("ISO-8859-1"), "utf-8");
			return str;
		}
	} catch (Exception exception1) {
	}
	try {
		if (str.equals(new String(str.getBytes("GBK"), "GBK"))) {
			str = new String(str.getBytes("GBK"), "utf-8");
			return str;
		}
	} catch (Exception exception3) {
	}
	return str;
}

/**
 * 判断是否为空
 * 
 * @param str
 * @return
 */
public static boolean isEmpty(String str) {
	// 如果字符串不为null,去除空格后值不与空字符串相等的话,证明字符串有实质性的内容
	if (str != null && !str.trim().isEmpty()) {
		return false;// 不为空
	}
	return true;// 为空
}

java获取:
String name = TypeUtil.toUTF8(request.getParameter("name"));
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值