HttpURLConnection 썸네일형 리스트형 Simple Java HttpServer and HttpURLConnection HttpServer import com.sun.net.httpserver.HttpHandler; import com.sun.net.httpserver.HttpServer; import java.io.IOException; import java.io.OutputStream; import java.net.InetSocketAddress; public class HttpServerApplication { final static HttpHandler indexHandler = httpExchange -> { final String response = "This is index page..."; httpExchange.sendResponseHeaders(200, response.length()); final Ou.. 이전 1 다음