Java standard library (com.sun.net.httpserver) Java
/pixel.gif కు వచ్చే రిక్వెస్ట్లకు empty GIF తో జవాబిచ్చే, Java standard library (com.sun.net.httpserver) కోసం Java స్నిపెట్. GIF స్టార్టప్లో ఒక్కసారే డీకోడ్ అవుతుంది.
Java standard library (com.sun.net.httpserver) Java
import com.sun.net.httpserver.HttpServer;
import java.net.InetSocketAddress;
import java.util.Base64;
public class Pixel {
private static final byte[] GIF = Base64.getDecoder().decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
public static void main(String[] args) throws Exception {
HttpServer server = HttpServer.create(new InetSocketAddress(8080), 0);
server.createContext("/pixel.gif", exchange -> {
// Contexts match by prefix, so check for the exact path.
if (!exchange.getRequestURI().getPath().equals("/pixel.gif")) {
exchange.sendResponseHeaders(404, -1);
exchange.close();
return;
}
exchange.getResponseHeaders().set("Content-Type", "image/gif");
exchange.getResponseHeaders().set("Cache-Control", "no-store");
exchange.sendResponseHeaders(200, GIF.length);
try (var body = exchange.getResponseBody()) {
body.write(GIF);
}
});
server.start();
}
}
మేము ఈ స్నిపెట్ను రన్ చేసి, అది తిరిగి ఇచ్చిన బైట్లను పోల్చి చూశాం.
చెక్ చేయండి
curl -sI http://localhost:8080/pixel.gif
అధికారిక సైట్: Java standard library (com.sun.net.httpserver)