java – 生成随机IP地址

我想生成一些随机的IP地址.但是加班这个generateIPAddress函数返回0.0.0.0字符串作为ipAddress.但是它应该每次都返回0.0.0.0以外的随机ipAddress.任何建议为什么会发生?
private void callingGeoService() {
        int p1 = 255;
        int p2 = 0;
        int p3 = 0;
        int inc = 5;

        String ipAddress = generateIPAddress(p1,p2,p3);

        p3 += inc;
        if (p3 > 255) {
            p3 = 0;
            p2 += inc;
            if (p2 > 255) {
                p2 = 0;
                p1--;
                if (p1 <= 0) {
                    p1 = 0;
                }
            }
        }
    }

//这是generateIPAddress方法

private String generateIPAddress(int p1,int p2,int p3) {

    StringBuilder sb = null;

    int b1 = (p1 >> 24) & 0xff;
    int b2 = (p2 >> 16) & 0xff;
    int b3 = (p3 >>  8) & 0xff;
    int b4 = 0;

    String ip1 = Integer.toString(b1);
    String ip2 = Integer.toString(b2);
    String ip3 = Integer.toString(b3);
    String ip4 = Integer.toString(b4);

    //Now the IP is b1.b2.b3.b4
    sb = new StringBuilder();
    sb.append(ip1).append(".").append(ip2).append(".").append(ip3).append(".").append(ip4);
    // System.out.println(sb);

    return sb.toString();

}

我想要一些随机ipAddress基本上所以我有硬编码的起始ipAddress位的形式为p1,p3,最后一位应为0.

解决方法

Random r = new Random();
return r.nextInt(256) + "." + r.nextInt(256) + "." + r.nextInt(256) + "." + r.nextInt(256);

相关文章

ArrayList简介:ArrayList 的底层是数组队列,相当于动态数组。与 Java 中的数组相比,它的容量能动态增...
一、进程与线程 进程:是代码在数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位。 线程...
本文为博客园作者所写:&#160;一寸HUI,个人博客地址:https://www.cnblogs.com/zsql/ 简单的一个类...
#############java面向对象详解#############1、面向对象基本概念2、类与对象3、类和对象的定义格式4、...
一、什么是异常? 异常就是有异于常态,和正常情况不一样,有错误出错。在java中,阻止当前方法或作用域...
Collection接口 Collection接口 Collection接口 Collection是最基本的集合接口,一个Collection代表一组...