做课程设计的时候在处理vCard格式的时候遇到过出现十六进制编码的情况,例如
QUOTED-PRINTABLE:=XX=XX=XX=XX=XX``````
其中XX代表十六进制数,当然,也有可能在末尾跟着非十六进制的字符串(一般是数字)。每一个十六进制数的前面都有一个“=”,那么我们需要怎样处理它才能得到我们需要的字符串呢?
先看代码:
package Function.Base_Function; import java.io.UnsupportedEncodingException; /**
*
* @author Sineatos
*/ public class CodeTranslator {
private CodeTranslator(){
} /**
* 将十六进制编码转化为目标编码
*/
public static String HextoString(String string,String CodeName){
String[] Hex;
Hex = string.split("=");
byte[] bytes = new byte[Hex.length-];
int j=;
for(int i=;i<Hex.length;i++){
if(Hex[i].length()>){
/*如果是非十六进制编码的时候直接将这些编码写进bytes数组*/
byte[] wordsbytes = Hex[i].getBytes();
byte[] newbytes = new byte[bytes.length + wordsbytes.length];
// System.attaycopy(src,srcPos,dest,destPos,length);
System.arraycopy(bytes, , newbytes, , bytes.length);
System.arraycopy(wordsbytes, , newbytes, j, wordsbytes.length);
bytes = newbytes;
j=j+wordsbytes.length;
}else{
Integer hex = Integer.decode("0x" + Hex[i]);
bytes[j] = hex.byteValue();
j++;
}
}
String newstring = null;
try {
newstring = new String(bytes,CodeName);
} catch (UnsupportedEncodingException ex) {
System.out.println("Error in Encoding Vcard");
}
return newstring;
}
}
这里我们需要用到的是Integer和String。
public static Integer decode(String nm)
将 String 解码为 Integer。接受通过以下语法给出的十进制、十六进制和八进制数字
public String(byte[] bytes,String charsetName)
通过使用指定的 charset 解码指定的 byte 数组,构造一个新的 String。新 String 的长度是字符集的函数,因此可能不等于 byte 数组的长度。
先将十六进制转成byte,然后再用String的构造方法生成字符串。