java 進(jìn)制轉(zhuǎn)換實(shí)例詳解
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了辰溪免費(fèi)建站歡迎大家使用!
十進(jìn)制轉(zhuǎn)成十六進(jìn)制:
Integer.toHexString(int i)
十進(jìn)制轉(zhuǎn)成八進(jìn)制
Integer.toOctalString(int i)
十進(jìn)制轉(zhuǎn)成二進(jìn)制
Integer.toBinaryString(int i)
十六進(jìn)制轉(zhuǎn)成十進(jìn)制
Integer.valueOf("FFFF",16).toString()
八進(jìn)制轉(zhuǎn)成十進(jìn)制
Integer.valueOf("876",8).toString()
二進(jìn)制轉(zhuǎn)十進(jìn)制
Integer.valueOf("0101",2).toString()
有什么方法可以直接將2,8,16進(jìn)制直接轉(zhuǎn)換為10進(jìn)制的嗎?
//java.lang.Integer類 parseInt(String s, int radix) //使用第二個(gè)參數(shù)指定的基數(shù),將字符串參數(shù)解析為有符號(hào)的整數(shù)。 examples from jdk: parseInt("0", 10) returns 0 parseInt("473", 10) returns 473 parseInt("-0", 10) returns 0 parseInt("-FF", 16) returns -255 parseInt("1100110", 2) returns 102 parseInt("2147483647", 10) returns 2147483647 parseInt("-2147483648", 10) returns -2147483648 parseInt("2147483648", 10) throws a NumberFormatException parseInt("99",throws a NumberFormatException parseInt("Kona", 10) throws a NumberFormatException parseInt("Kona", 27) returns 411787
進(jìn)制轉(zhuǎn)換如何寫(二,八,十六)不用算法
Integer.toBinaryString Integer.toOctalString Integer.toHexString
例二
public class Test{ public static void main(String args[]){ int i=100; String binStr=Integer.toBinaryString(i); String otcStr=Integer.toOctalString(i); String hexStr=Integer.toHexString(i); System.out.println(binStr); }
例二
public class TestStringFormat { public static void main(String[] args) { if (args.length == 0) { System.out.println("usage: java TestStringFormat <a number>"); System.exit(0); } Integer factor = Integer.valueOf(args[0]); String s; s = String.format("%d", factor); System.out.println(s); s = String.format("%x", factor); System.out.println(s); s = String.format("%o", factor); System.out.println(s); } }
其他方法:
Integer.toHexString(你的10進(jìn)制數(shù));
例如
String temp = Integer.toHexString(75);
輸出temp就為 4b
//輸入一個(gè)10進(jìn)制數(shù)字并把它轉(zhuǎn)換成16進(jìn)制 import java.io.*; public class toHex{ public static void main(String[]args){ int input;//存放輸入數(shù)據(jù) //創(chuàng)建輸入字符串的實(shí)例 BufferedReader strin=new BufferedReader(new InputStreamReader(System.in)); System.out.println("請(qǐng)輸入一個(gè)的整數(shù):"); String x=null; try{ x=strin.readLine(); }catch(IOException ex){ ex.printStackTrace(); } input=Integer.parseInt(x); System.out.println ("你輸入的數(shù)字是:"+input);//輸出從鍵盤接收到的數(shù)字 System.out.println ("它的16進(jìn)制是:"+Integer.toHexString(input));//用toHexString把10進(jìn)制轉(zhuǎn)換成16進(jìn)制 } }
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
網(wǎng)頁(yè)名稱:java進(jìn)制轉(zhuǎn)換實(shí)例詳解
本文鏈接:http://jinyejixie.com/article10/jdoido.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、品牌網(wǎng)站制作、手機(jī)網(wǎng)站建設(shè)、App開發(fā)、云服務(wù)器、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)