欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JAVA 十六进制与字符串的转换

程序员文章站 2022-07-22 13:56:27
tohexstring public static string tohexstring(int i)以十六进制的无符号整数形式返回一个整数参数的字符串表示形式。 如果参数...
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<s.length();i++)
{
int ch = (int)s.charat(i);
string s4 = integer.tohexstring(ch);
str = str + s4;
}
return str;
}
// 转化十六进制编码为字符串
public static string tostringhex(string s)
{
byte[] bakeyword = new byte[s.length()/2];
for(int i = 0; i < bakeyword.length; i++)
{
try
{
bakeyword[i] = (byte)(0xff & integer.parseint(s.substring(i*2, i*2+2),16));
}
catch(exception e)
{
e.printstacktrace();
}
}
try
{
s = new string(bakeyword, "utf-8");//utf-16le:not
}
catch (exception e1)
{
e1.printstacktrace();
}
return s;
}
// 转化十六进制编码为字符串
public static string tostringhex(string s)
{
byte[] bakeyword = new byte[s.length()/2];
for(int i = 0; i < bakeyword.length; i++)
{
try
{
bakeyword[i] = (byte)(0xff & integer.parseint(s.substring(i*2, i*2+2),16));
}
catch(exception e)
{
e.printstacktrace();
}
}
try
{
s = new string(bakeyword, "utf-8");//utf-16le:not
}
catch (exception e1)
{
e1.printstacktrace();
}
return s;
}
public static void main(string[] args) {
system.out.println(encode("中文"));
system.out.println(decode(encode("中文")));
}
/*
* 16进制数字字符集
*/
private static string hexstring="0123456789abcdef";
/*
* 将字符串编码成16进制数字,适用于所有字符(包括中文)
*/
public static string encode(string str)
{
//根据默认编码获取字节数组
byte[] bytes=str.getbytes();
stringbuilder sb=new stringbuilder(bytes.length*2);
//将字节数组中每个字节拆解成2位16进制整数
for(int i=0;i<bytes.length;i++)
{
sb.append(hexstring.charat((bytes[i]&0xf0)>>4));
sb.append(hexstring.charat((bytes[i]&0x0f)>>0));
}
return sb.tostring();
}
/*
* 将16进制数字解码成字符串,适用于所有字符(包括中文)
*/
public static string decode(string bytes)
{
bytearrayoutputstream baos=new bytearrayoutputstream(bytes.length()/2);
//将每2位16进制整数组装成一个字节
for(int i=0;i<bytes.length();i+=2)
baos.write((hexstring.indexof(bytes.charat(i))<<4 |hexstring.indexof(bytes.charat(i+1))));
return new string(baos.tobytearray());
}
第二种方法:
将指定byte数组以16进制的形式打印到控制台
复制代码 代码如下:

package com.nantian.iclient.atm.sdb;

public class util {
public util() {
}

/**
* 将指定byte数组以16进制的形式打印到控制台
* @param hint string
* @param b byte[]
* @return void
*/
public static void printhexstring(string hint, byte[] b) {
system.out.print(hint);
for (int i = 0; i < b.length; i++) {
string hex = integer.tohexstring(b[i] & 0xff);
if (hex.length() == 1) {
hex = '0' + hex;
}
system.out.print(hex.touppercase() + " ");
}
system.out.println("");
}

/**
*
* @param b byte[]
* @return string
*/
public static string bytes2hexstring(byte[] b) {
string ret = "";
for (int i = 0; i < b.length; i++) {
string hex = integer.tohexstring(b[i] & 0xff);
if (hex.length() == 1) {
hex = '0' + hex;
}
ret += hex.touppercase();
}
return ret;
}

/**
* 将两个ascii字符合成一个字节;
* 如:"ef"--> 0xef
* @param src0 byte
* @param src1 byte
* @return byte
*/
public static byte unitebytes(byte src0, byte src1) {
byte _b0 = byte.decode("0x" + new string(new byte[]{src0})).bytevalue();
_b0 = (byte)(_b0 << 4);
byte _b1 = byte.decode("0x" + new string(new byte[]{src1})).bytevalue();
byte ret = (byte)(_b0 ^ _b1);
return ret;
}

/**
* 将指定字符串src,以每两个字符分割转换为16进制形式
* 如:"2b44efd9" --> byte[]{0x2b, 0x44, 0xef, 0xd9}
* @param src string
* @return byte[]
*/
public static byte[] hexstring2bytes(string src){
byte[] ret = new byte[8];
byte[] tmp = src.getbytes();
for(int i=0; i<8; i++){
ret[i] = unitebytes(tmp[i*2], tmp[i*2+1]);
}
return ret;
}

}