Klasse InetAddress
-
Hi Leute,
ich versuche:
try { addr = new InetAddress.getByName("192.168.0.1"); sock = new Socket(addr,80); add(okButton); } catch (IOException e) { add(wrongButton); }
doch eclipse markiert mir InetAddress.getByName rot und meint:
InetAddress.getByName cannot be resolved to a type
Was bedeutet dieser Fehler und wie bekomme ich ihn weg? Gehlt mir noch eine Klasse außer import java.net.*;?
MfG
-
Du greifst falsch auf die Methode zu, da getByName eine statische Methode ist.