整數與IP地址間的轉換

題目描述

原理:ip地址的每段能夠當作是一個0-255的整數,把每段拆分紅一個二進制形式組合起來,而後把這個二進制數轉變成一個長整數。
舉例:一個ip地址爲10.0.3.193
每段數字             相對應的二進制數
10                   00001010
0                    00000000
3                    00000011
193                  11000001
組合起來即爲:00001010 00000000 00000011 11000001,轉換爲10進制數就是:167773121,即該IP地址轉換後的數字就是它了。
每段能夠當作是一個0-255的整數,須要對IP地址進行校驗

輸入描述

輸入 
1 輸入IP地址
2 輸入10進制型的IP地址

輸出描述

輸出
1 輸出轉換成10進制的IP地址
2 輸出轉換後的IP地址

輸入例子

10.0.3.193
167969729

輸出例子

167773121
10.3.3.193

算法實現

import java.util.Scanner;

/**
 * All Rights Reserved !!!
 */
public class Main {
    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        String str = "";

        while (scanner.hasNext()) {
            str = scanner.next();
            if (str.contains(".")) {
                System.out.println(ipToInt(str));
            } else {
                System.out.println(intToIp(str));
            }
        }

        scanner.close();
    }

    private static String intToIp(String str) {
        String result = "";
        Long input = Long.parseLong(str);
        for (int i = 3; i >= 0; i--) {
            result = (input & 0x000000FF) + "." + result;
            input >>>= 8;
        }
        return result.substring(0, result.length() - 1);
    }

    private static long ipToInt(String str) {
        String[] array;
        long result = 0;
        array = str.split("[.]");
        for (String s : array) {
            result = (result << 8) + Integer.parseInt(s);
        }
        return result;
    }

}
相關文章
相關標籤/搜索