博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HexDump.java解析,android 16进制转换
阅读量:6207 次
发布时间:2019-06-21

本文共 3910 字,大约阅读时间需要 13 分钟。

HexDump.java解析android 16进制转换

package com.android.internal.util;public class HexDump{    private final static char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };//十六进制的组成元素        public static String dumpHexString(byte[] array)    {        return dumpHexString(array, 0, array.length);    }        public static String dumpHexString(byte[] array, int offset, int length)    {        StringBuilder result = new StringBuilder();                byte[] line = new byte[16];        int lineIndex = 0;                result.append("\n0x");        result.append(toHexString(offset));                for (int i = offset ; i < offset + length ; i++)        {            if (lineIndex == 16)            {                result.append(" ");                                for (int j = 0 ; j < 16 ; j++)                {                    if (line[j] > ' ' && line[j] < '~')                    {                        result.append(new String(line, j, 1));                    }                    else                    {                        result.append(".");                    }                }                                result.append("\n0x");                result.append(toHexString(i));                lineIndex = 0;            }                        byte b = array[i];            result.append(" ");            result.append(HEX_DIGITS[(b >>> 4) & 0x0F]);            result.append(HEX_DIGITS[b & 0x0F]);                        line[lineIndex++] = b;        }                if (lineIndex != 16)        {            int count = (16 - lineIndex) * 3;            count++;            for (int i = 0 ; i < count ; i++)            {                result.append(" ");            }                        for (int i = 0 ; i < lineIndex ; i++)            {                if (line[i] > ' ' && line[i] < '~')                {                    result.append(new String(line, i, 1));                }                else                {                    result.append(".");                }            }        }                return result.toString();    }        public static String toHexString(byte b)    {        return toHexString(toByteArray(b));    }    public static String toHexString(byte[] array)    {        return toHexString(array, 0, array.length);    }        public static String toHexString(byte[] array, int offset, int length)    {        char[] buf = new char[length * 2];        int bufIndex = 0;        for (int i = offset ; i < offset + length; i++)         {            byte b = array[i];            buf[bufIndex++] = HEX_DIGITS[(b >>> 4) & 0x0F];            buf[bufIndex++] = HEX_DIGITS[b & 0x0F];        }        return new String(buf);            }        public static String toHexString(int i)    {        return toHexString(toByteArray(i));    }        public static byte[] toByteArray(byte b)    {        byte[] array = new byte[1];        array[0] = b;        return array;    }        public static byte[] toByteArray(int i)    {        byte[] array = new byte[4];                array[3] = (byte)(i & 0xFF);        array[2] = (byte)((i >> 8) & 0xFF);        array[1] = (byte)((i >> 16) & 0xFF);        array[0] = (byte)((i >> 24) & 0xFF);                return array;    }        private static int toByte(char c)    {        if (c >= '0' && c <= '9') return (c - '0');        if (c >= 'A' && c <= 'F') return (c - 'A' + 10);        if (c >= 'a' && c <= 'f') return (c - 'a' + 10);        throw new RuntimeException ("Invalid hex char '" + c + "'");    }        public static byte[] hexStringToByteArray(String hexString)    {        int length = hexString.length();        byte[] buffer = new byte[length / 2];        for (int i = 0 ; i < length ; i += 2)        {            buffer[i / 2] = (byte)((toByte(hexString.charAt(i)) << 4) | toByte(hexString.charAt(i+1)));        }                return buffer;    }    }

 

转载地址:http://fczja.baihongyu.com/

你可能感兴趣的文章
【工具使用系列】关于 MATLAB 遗传算法与直接搜索工具箱,你需要知道的事
查看>>
Kali-linux Arpspoof工具
查看>>
PDF文档页面如何重新排版?
查看>>
基于http协议使用protobuf进行前后端交互
查看>>
AlphaGo Zero用它来调参?【高斯过程】到底有何过人之处?
查看>>
Linux平台Oracle多个实例启动说明
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JavaScript 数据类型
查看>>
量子通信和大数据最有市场突破前景
查看>>
StringBuilder用法小结
查看>>
UVa 10252-Common Permutation
查看>>
CSS - 修改input - placeholder 和 readonly 的样式
查看>>
android studio :cannot resolve symbol R
查看>>
paper 20 :color moments
查看>>
代码大全
查看>>
DataTable.ImportRow()与DataTable.Rows.Add()的区别
查看>>
程序集、应用程序配置及App.config和YourSoft.exe.config .
查看>>