Hallo,
ich hätte mal eine Frage.
Ich wollte mal einfach eine kleine Client/Server-Anwendung programmieren (nur zum Spass).
Und hab mit diesem Code-Schnipsel mal versucht meine IP zu ermitteln, das war immer 127.0.0.1.
Ist das normal?
import java.net.*;
class GetLocalIP
{
public static void main( String args[] )
{
try {
System.out.println( "Host Name und Adresse: " +
InetAddress.getLocalHost());
}
catch( Exception e ) { System.out.println( e ); }
}
}
Gruß Dragon20
ich hätte mal eine Frage.
Ich wollte mal einfach eine kleine Client/Server-Anwendung programmieren (nur zum Spass).
Und hab mit diesem Code-Schnipsel mal versucht meine IP zu ermitteln, das war immer 127.0.0.1.
Ist das normal?
import java.net.*;
class GetLocalIP
{
public static void main( String args[] )
{
try {
System.out.println( "Host Name und Adresse: " +
InetAddress.getLocalHost());
}
catch( Exception e ) { System.out.println( e ); }
}
}
Gruß Dragon20