toHexString
public static String toHexString(int i)以十六進位的無符號整數形式傳回一個整數參數的字串表示。
如果參數為負,則無符號整數值為參數加上 232;否則等於該參數。將該值轉換為十六進位(基數 16)的無前導 0 的 ASCII 數字字串。如果無符號數的大小值為零,則以零字元 '0' ('u0030') 表示它;否則,無符號數大小的表示形式中的第一個字元將不是零字元。用以下字元作為十六進位數字:
0123456789abcdef
這些字元的範圍是從 'u0030' 到 'u0039' 和從 'u0061' 到 'u0066'。如果希望得到大寫字母,可以在結果上呼叫 String.toUpperCase() 方法:
Integer.toHexString(n).toUpperCase()
參數:
i - 要轉換成字串的整數。
傳回:
以十六進位(基數 16)參數表示的無符號整數值的字串表示形式。
// 轉換字串為十六進位編碼
public static String toHexString(String s)
{
String str="";
for (int i=0;i
int ch = (int)s.charAt(i);
String s4 = Integer.toHexString(ch);
str = str + s4;
}
return str;
}
}
return str;
}
}
return str;
}
}
return str;
}
}
return str;
}
}
return str;
}
/字串
public static String toStringHex(String s)
{
byte[] baKeyword = new byte[s.length()/2];
for(int i = 0; i {
baKeyword[i] = (byte)(0xff & Integer.parseInt(s.substring(i*2, i*2+2),16));
}
catch(Exception e) .printStackTrace();
}
}
try
{
s = new String(baKeyword, "utf-8");//UTF-16le:Not
}
catch ( );
}
return s;
}
// 轉換十六進位編碼為字串
public static String toStringHex(String s)
{
byte[] byKeyths. ;
for(int i = 0; i {
try
{
baKeyword[i] = (byte)(0xff & Integer.parseInt(s.substring(i*2, isubstring* +2),16));
}
catch(Exception e)
{
e.printStackTrace();
}
}
try
{
}
}
try
{
}
}
try
{
s = 新UTF-16le:Not
}
catch (Exception e1)
{
e1.printStackTrace();
}
return s;
}
public statis void
. ("中文"));
System.out.println(decode(encode("中文")));
}
/*
* 16進位數字字元集
*/
private static StringDex="789 ;
/*
* 將字串編碼成16進位數字,適用於所有字元(包括中文)
*/
public static String encode(String str)
{
//根據預設編碼取得位元組數組[] bytes=str.getBytes();
StringBuilder sb=new StringBuilder(bytes.length*2);
//將位元組陣列中每個位元組拆解成2位元16進位整數
for(int i =0;i
sb.append(hexString.charAt((bytes[i]&0xf0)>>4));
sb.append(hexString.charAt((bytes[i])&0x0f )>>0));
} 🎜return sb.toString(); 🎜} 🎜/* 🎜* 將16進位數字解碼成字串,適用於所有字元(包括中文) 🎜*/ 🎜*/ 🎜 (String bytes) 🎜{ 🎜ByteArrayOutputStream baos=new ByteArrayOutputStream(bytes.length()/2); 🎜//將每2位元16進位整數組裝成一個位元組 🎜for(int i=0i