IPAddressTool.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools;
  19. /**
  20.  * Provides a class with tools for working with IP addresses, in both strings
  21.  * and as long integers.
  22.  * 
  23.  * @author Nol888
  24.  * @version 0.1
  25.  * @since Revision 890
  26.  */
  27. public class IPAddressTool {
  28. /**
  29.  * Dummy constructor for static classes.
  30.  */
  31. private IPAddressTool() {
  32. }
  33. /**
  34.  * Converts a dotted-quad IP (<code>127.0.0.1</code>) and turns it into
  35.  * a long integer IP.
  36.  * 
  37.  * @param dottedQuad The IP address in dotted-quad form.
  38.  * @return The IP as a long integer.
  39.  * @throws RuntimeException
  40.  */
  41. public static long dottedQuadToLong(String dottedQuad) throws RuntimeException {
  42. String[] quads = dottedQuad.split("\.");
  43. if (quads.length != 4) {
  44. throw new RuntimeException("Invalid IP Address format.");
  45. }
  46. long ipAddress = 0;
  47. for (int i = 0; i < 4; i++) {
  48. int quad = Integer.parseInt(quads[i]);
  49. ipAddress += (long) (quad % 256) * (long) Math.pow(256, (double) (4 - i));
  50. }
  51. return ipAddress;
  52. }
  53. /**
  54.  * Converts a long integer IP into a dotted-quad IP.
  55.  * 
  56.  * @param longIP The IP as a long integer.
  57.  * @return The IP as a dotted-quad string.
  58.  * @throws RuntimeException
  59.  */
  60. public static String longToDottedQuad(long longIP) throws RuntimeException {
  61. StringBuilder ipAddress = new StringBuilder();
  62. for (int i = 0; i < 4; i++) {
  63. int quad = (int) (longIP / (long) Math.pow(256, (double) (4 - i)));
  64. longIP -= (long) quad * (long) Math.pow(256, (double) (4 - i));
  65. if (i > 0) {
  66. ipAddress.append(".");
  67. }
  68. if (quad > 255) {
  69. throw new RuntimeException("Invalid long IP address.");
  70. }
  71. ipAddress.append(quad);
  72. }
  73. return ipAddress.toString();
  74. }
  75. }