左晓为主开发手持机充值管理机
zuoxiao
2024-03-22 e8232424de65da0254ce9637e19af9a4a6527964
app/src/main/java/com/dayu/recharge/tools/HexUtil.java
@@ -62,7 +62,7 @@
        if (hex.length() < 2) {
            hex = "0" + hex;
        }
        return hex;
        return hex.toUpperCase();
    }
@@ -183,6 +183,24 @@
    }
    /**
     * 16进制转10进制高低位转换
     * @param hex
     * @return
     */
    public static int get16to10LowHigh(String hex) {
        try {
            String str = "";
            str = spaceHex(hex);
            str = HighLowHex(str);
            return Integer.parseInt(str, 16);
        } catch (NumberFormatException e) {
            e.printStackTrace();
        }
        return 0;
    }
    /**
     * 返回特定长度的16进制字符串
     *
     * @param data