Skip to content

Instantly share code, notes, and snippets.

View bench87's full-sized avatar

최명규 bench87

View GitHub Profile
@rajkrrsingh
rajkrrsingh / Java DNS resolution.md
Last active November 25, 2025 00:04
how the java dns resolution work

lets take a sample code to demonste what happen when java tries to resolve the ip for the give hostname.


import java.net.InetAddress;
import java.net.UnknownHostException;

public class DNSClient {
    public static void main(String[] args) {
 InetAddress address = null;