The inetaddress tag has no wiki summary.
5
votes
3answers
275 views
Increment IP address
In that program I want to increment IP address. And I see output like that:
125.23.45.67
126.23.45.67
127.23.45.67
128.23.45.67
129.23.45.67
130.23.45.67
131.23.45.67
132.23.45.67
133.23.45.67
...
5
votes
3answers
2k views
Java application wanting to use both Inet4Address and Inet6Address at the same time
I have a Java application that needs to connect via sockets to two different servers on two separate machines. One server has been configured to listen on IPv4 connections, while the other has been ...
5
votes
3answers
4k views
Java: convert int to InetAddress
I have an int which contains an IP address in network byte order, which I would like to convert to an InetAddress object. I see that there is an InetAddress constructor that takes a byte[], is it ...
4
votes
2answers
3k views
isReachable in Java doesn't appear to be working quite the way it's supposed to
I'm using Clojure, but I can read Java, so this isn't a Clojure specific question. This doesn't even seem to be working from Java.
I'm trying to implement a bit of a 'ping' function using ...
3
votes
2answers
62 views
Get IP address with URL string? (Java)
In my program a user enters a url string, say
http://www.engineering.uiowa.edu/~hawkeng//fall01/graphics/potato.gif
how would I get the IP address of this url? I tried using
InetAddress address = ...
3
votes
2answers
350 views
Fully qualified machine name Java with /etc/hosts
I am trying get the fully qualified name of my machine (Windows 7 x64) in Java. On my machine, I've updated the c:\Windows\system32\drivers\etc\hosts file such that it has an entry like this:
...
3
votes
1answer
291 views
a funny thing happens… ExecutorCompletionService
I have an application written in java that needs to find all the reachable hosts on the network.
I use InetAddress.isReachable() to do this with a timeout of 2000 milliseconds.
I look up the current ...
3
votes
3answers
706 views
How to turn Java class into one of its subclasses (SocketAddress and InetSocketAddress)
I am trying to get the IP of a socket connection in string form.
I am using a framework, which returns the SocketAddress of the received message. How can i transform it to InetSocketAddress or ...
2
votes
6answers
168 views
how to get the next ip address from a given ip in java?
Folks,
Am looking for a Java code snippet, which gives the next address from the given IP.
so getNextIPV4Address("10.1.1.1") returns "10.1.1.2".
String crunching can be done but might end up messy. ...
2
votes
1answer
253 views
Getting Yahoo IP address is not working
I get the Yahoo IP address using InetAddress class in java. The result of yahoo.com IP address is not working while given in URL of web browsers.
InetAddress[] all = ...
2
votes
1answer
3k views
Is there an easy way to convert String to Inetaddress in Java?
I am trying to convert strings into Inetaddress. I am not trying to resolve hostnames, the strings are ipv4 addresses, does InetAddress.getByName(String host) work? Or do I have to manually parse it?
1
vote
1answer
19 views
Match IPv4 address against pattern or dns
I have a IPv4 address which should be compared against a pattern. A pattern can either be a specific address maybe containing wildcards or a dns.
*
..*.*
192.168.*.5
206.0.3.4-25
45.30.9.101
...
1
vote
1answer
43 views
change location from where you ping to an IP address
My application is: ping host IP(in LAN) address from my machine.
InetAddress address = InetAddress.getByName("host IP address");
boolean b=(address.isReachable(10000));
When i run that web ...
1
vote
3answers
76 views
Is the static method getByname of InetAddress class in java an example of Factory method pattern?
The standard factory Method design pattern talks of 4 classes.
Creator,Product n their concrete implementations.
So for each product we need to instantiate corresponding factory which has methods to ...
1
vote
2answers
2k views
Java: Convert a String (representing an IP) to InetAddress
I'm trying to convert a string(representing an IP address, e.g. 10.0.2.50) into an InetAddress obj.
According to the API it is possible to create an Object providing a String representing a ...
1
vote
1answer
362 views
How to create InetAddress object in android?
HI!
I am writing code that will run in android. I want to get the IP address of my pc i.e connected to the same network. i.e My Phone is connected via wifi and the pc is connected via ethernet cable ...
1
vote
1answer
452 views
Find IP of program trying to connect to ServerSocket
Although I searched about it I couldn't find an answer.
Let's say I have the following Java code:
ServerSocket serve = null;
try {
server = new ServerSocket(5567);
} catch ...
1
vote
1answer
128 views
PostgresSQL: Comparing first 3 numbers of an IPv4 address?
I'm trying to program a PHP-script, where users
can rate the "goodness" of the other users:
create table pref_rep (
id varchar(32) references pref_users(id) check (id <> author),
...
1
vote
2answers
763 views
How to store both IPv4 or IPv6 in single column in SQL Server?
shall I use binary(16)? or varbinary(16)?
I know I can use getAddress() in java.net.InetAddress (Java) or System.Net.IPAddress (C#) to get a byte[] representation of both IPv4 and IPv6, but if I ...
1
vote
2answers
1k views
Avoid using InetAddress - Getting a raw IP address in network byte order
I am trying to use the MaxMind GeoLite Country database on the Google App Engine. However, I am having difficulty getting the Java API to work as it relies on the InetAddress class which is not ...
0
votes
0answers
41 views
Can't understand routing related code
So we are doing a group project at university. The coursework is to create a simple distributed simulator of a router program.
My team member sent me this code for documentation, but I'm not really ...
0
votes
0answers
67 views
getting localhost with javascript from java applet
in following (self-signed) applet, why if i use paint, i get "mypc-PC/192.168.x.xxx" (in alert and in drawing box) and if i use start, i get only "localhost/127.0.0.1" in alert?
i don't really need ...
0
votes
2answers
52 views
InetAddress withouth using Scriptlets
Is there a way to do:
java.net.InetAddress.getLocalHost().getHostName()
without using JSP Scriptlets?
Looking for a more conventional solution, probably using JSTL capabilities to achieve this.
...
0
votes
2answers
90 views
Android - comparing two InetAddress which are equal fails?
I have an app that I am now developing multiplayer for. However I do not have 2 phones so I have been running a separate program on my pc (note: not the emulator!) which simulates my program and the ...
0
votes
1answer
165 views
Obtain FQDN in Java
I am trying to obtain the FQDN of a windows machine in my domain, using Java code.
I have tried the InetAddress.getByName("machine-1").getCanonicalHostName() but only returns the machine name.
On ...
0
votes
1answer
390 views
How do I access the Connection-specific DNS Suffix for each NetworkInterface in Java?
Is it possible within a Java program to access the string contained in the "Connection-specific DNS Suffix" field of a Windows machine's ipconfig /all output?
Eg:
C:>ipconfig /all
Ethernet adapter ...
0
votes
2answers
854 views
InetAddress getLocalHost() does not return expected IP address from C:\WINDOWS\system32\drivers\etc\hosts
In the file C:\WINDOWS\system32\drivers\etc\hosts I have only the following line
192.168.0.23 computername.domain.com computername
When I run
InetAddress localhost = ...