码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA十六进制字符串与整型互相转换

时间:2016-11-28 19:43:09      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:replace   val   bsp   int   format   转换   static   integer   class   

  public static void main(String[] args) {
        String str = "000AB";
        Integer in = Integer.valueOf(str,16);
        String st = Integer.toHexString(in).toUpperCase();
        st = String.format("%5s",st);
        st= st.replaceAll(" ","0");
    }

 

JAVA十六进制字符串与整型互相转换

标签:replace   val   bsp   int   format   转换   static   integer   class   

原文地址:http://www.cnblogs.com/flycoding/p/6110635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!