bin2hex
是 Java 中的一個方法,用于將字節數組轉換為十六進制字符串表示。它并不直接支持字符集轉換。如果你需要將字節數組從一種字符集轉換為另一種字符集,你可以先將字節數組轉換為字符串(例如使用 new String(byteArray, sourceCharset)
),然后再將字符串轉換為另一種字符集的字符串(例如使用 new String(string.getBytes(targetCharset))
)。
以下是一個簡單的示例,演示了如何使用 bin2hex
將字節數組轉換為十六進制字符串,然后再將字符串轉換回字節數組:
import java.nio.charset.Charset;
import java.util.Arrays;
public class Bin2HexExample {
public static void main(String[] args) {
byte[] byteArray = "Hello, world!".getBytes(Charset.forName("UTF-8"));
String hexString = bin2hex(byteArray);
System.out.println("Hex string: " + hexString);
byte[] decodedByteArray = hexToBin(hexString);
String decodedString = new String(decodedByteArray, Charset.forName("UTF-8"));
System.out.println("Decoded string: " + decodedString);
}
public static String bin2hex(byte[] data) {
StringBuilder sb = new StringBuilder();
for (byte b : data) {
sb.append(String.format("%02x", b));
}
return sb.toString();
}
public static byte[] hexToBin(String hex) {
int len = hex.length();
byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(hex.charAt(i), 16) << 4)
+ Character.digit(hex.charAt(i + 1), 16));
}
return data;
}
}
在這個示例中,我們將 “Hello, world!” 字符串從 UTF-8 字符集轉換為十六進制字符串,然后再將其轉換回 UTF-8 字符集。注意,這個示例僅用于演示目的,實際應用中可能需要處理更多的錯誤和邊界情況。