35进制的目的是防止0和O造成的视觉误差 BEGIN DECLARE m_StrHex35 VARCHAR(100); -- 返回35进制表示的结果 DECLARE m_Remainder BIGINT; -- 余数 DECLARE m_Base35 VARCHAR(1); SET m_Remainder=0; SET m_StrHex35=''; WHILE p_Hex10>=35 DO SET m_Remainder=p_Hex10%35; SET…
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package test.util; /** * * @author Administrator */ public class StringUtil { public StringUtil() { } /** * 将指定byte数组以16进制的形式打印到控制台 * @param hint String…