import ;
import ;
import ;
/**
* <p>Title:字符编码工具类 </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: </p>
* @author: jeffzhu
* @version 1.0
*/
public class CharTools {
/**
* 转换编码 ISO-8859-1到GB2312
* @param text
* @return
*/
public String ISO2GB(String text) {
String result = "";
try {
result = new String(("ISO-8859-1"), "GB2312");
}
catch (UnsupportedEncodingException ex) {
result = ();
}
return result;
}
/**
* 转换编码 GB2312到ISO-8859-1
* @param text
* @return
*/
public String GB2ISO(String text) {
String result = "";
try {
result = new String(("GB2312"), "ISO-8859-1");
}
catch (UnsupportedEncodingException ex) {
();
}
return result;
}
/**
* Utf8URL编码
* @param s
* @return
*/
public String Utf8URLencode(String text) {
StringBuffer result = new StringBuffer();
for (int i = 0; i < (); i++) {
char c = (i);
if (c >= 0 && c <= 255) {
(c);
}else {
byte[] b = new byte[0];
try {
b = (c).getBytes("UTF-8");
}catch (Exception ex) {
}
for (int j = 0; j < ; j++) {
int k = b[j];
if (k < 0) k += 256;
("%" + (k).toUpperCase());
}
}
}
return ();
}
/**
* Utf8URL解码
* @param text
* @return
*/
public String Utf8URLdecode(String text) {
String result = "";
int p = 0;
if (text!=null && ()>0){
text = ();
p = ("%e");
if (p == -1) return text;
while (p != -1) {
result += (0, p);
text = (p, ());
if (text == "" || () < 9) return result;
result += CodeToWord((0, 9));
text = (9, ());
p = ("%e");
}
}
return result + text;
}
/**
* utf8URL编码转字符
* @param text
* @return
*/
private String CodeToWord(String text) {
String result;
if (Utf8codeCheck(text)) {
byte[] code = new byte[3];
code[0] = (byte) (((1, 3), 16) - 256);
code[1] = (byte) (((4, 6), 16) - 256);
code[2] = (byte) (((7, 9), 16) - 256);
try {
result = new String(code, "UTF-8");
}catch (UnsupportedEncodingException ex) {
result = null;
}
}
else {
result = text;
}
return result;
}
/**
* 编码是否有效
* @param text
* @return
*/
private boolean Utf8codeCheck(String text){
String sign = "";
if (("%e"))
for (int i = 0, p = 0; p != -1; i++) {
p = ("%", p);
if (p != -1)
p++;
sign += p;
}
return ("147-1");
}
/**
* 是否Utf8Url编码
* @param text
* @return
*/
public boolean isUtf8Url(String text) {
text = ();
int p = ("%");
if (p != -1 && () - p > 9) {
text = (p, p + 9);
}
return Utf8codeCheck(text);
}
/**
* 测试
* @param args
*/