Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having an issue with getting every IP address in Java. When I open the GUI to select which IP you want to use, I call:

private List<String> getIP() {
    List<String> outputList = new ArrayList<String>();
    try {
        InetAddress localIP = InetAddress.getLocalHost();
        InetAddress[] everyIPAddress = InetAddress.getAllByName(localIP
                .getCanonicalHostName());
        if (everyIPAddress != null && everyIPAddress.length > 1) {
            for (int i = 0; i < everyIPAddress.length; i++) {
                if (!everyIPAddress[i].toString().contains(":")) {
                    outputList.add(everyIPAddress[i].toString());
                }
            }
        }
    } catch (UnknownHostException e) {
        System.out.println("Error finding IP Address");
    }
    return outputList;
}

This method gets all of the IPv4 addresses that the client has. I know IPv6 addresses contain colons, so I don't add any with a colon to the list.

Then, pressing the button changes the IP address. However, I have noticed that when there is only one IPv4 address that the machine has (You get two from having a service like Hamachi) it will return a null exception. How would I go about getting every IP address of the client without returning a null exception if there is only one address?

share|improve this question
It doesn't 'return a null exception'. Your code throws a NullPointerException, at some line of code which you have not disclosed, and by the look of it haven't even posted. – EJP Jan 7 at 1:21

1 Answer

if (everyIPAddress != null && everyIPAddress.length > 1) {

should be

if (everyIPAddress != null && everyIPAddress.length >= 1) {

or

if (everyIPAddress != null && everyIPAddress.length > 0) {
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.