import java.net.MalformedURLException; import java.net.*; // import java Scanner import java.util.*; public class EX_1 { // open public public static void main(String[] args) throws MalformedURLException { //variable hostname String hostname; // Scanner function Scanner sc = new Scanner(System.in); System.out.print("Enter url : "); hostname = sc.nextLine(); URL url1 = new URL(hostname); URL url2 = new URL(hostname); System.out.println(url1.toString()); System.out.println("Protocol: " + url2.getProtocol()); System.out.println("Host: " + url2.getHost()); System.out.println("Port: " + url2.getPort()); System.out.println("File: " + url2.getFile()); System.out.println("Reference:- " + url2.getRef()); } }
import java.net.InetAddress; import java.net.UnknownHostException; public class GetIpAddress { public static void main(String[] args) throws UnknownHostException { // Local IP Address จากเครื่องที่รันไฟล์นี้ System.out.println(InetAddress.getLocalHost().getHostAddress()); // Public IP Address ของ website System.out.println(InetAddress.getByName("www.website.com")); // IP ทั้งหมดของ domain InetAddress[] inetAddresses = InetAddress.getAllByName("www.google.com"); for (InetAddress ipAddress : inetAddresses) { System.out.println(ipAddress); } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง