EncodeUtil
package com.css.common.util;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
/**
?* 字符編碼的過(guò)濾
?*
?* @version 1.0
?*
?*/
public class EncodeUtil {
?/**
? * 默認(rèn)的URLEncode字符編碼
? */
?private static String DEFAULT_URL_ENCODE = "GBk";
?
?public static String setEncode(String str) throws Exception {
??return setEncode(str,DEFAULT_URL_ENCODE);
?}
?public static String setEncode(String str, String enc) throws Exception {
??try {
???return URLEncoder.encode(str, enc);
??} catch (UnsupportedEncodingException e) {
???e.printStackTrace();
???throw new Exception(EncodeUtil.class.getName() + ":URLEncoder.encode設(shè)置編碼錯(cuò)誤:"+e.getMessage());
??}
?}
?public static String setDecode(String str) throws Exception {
??return setDecode(str,DEFAULT_URL_ENCODE);
?}
?public static String setDecode(String str, String enc) throws Exception {
??try {
???return URLDecoder.decode(str, enc);
??} catch (UnsupportedEncodingException e) {
???e.printStackTrace();
???throw new Exception(EncodeUtil.class.getName() + ": URLDecoder.decode設(shè)置編碼錯(cuò)誤:"+e.getMessage());
??}
?}
?public static void main(String[] args) throws Exception {
??String str = EncodeUtil.setDecode("過(guò)濾詞");
??System.out.println(str);
?}
}
總結(jié)
以上是生活随笔為你收集整理的EncodeUtil的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 沿河在哪里 寻找沿河美景的指南?
- 下一篇: 菠萝饭的家常做法?