コード例 #1
0
 void errorReply(HttpTransaction req, String reply) throws IOException {
   req.addResponseHeader("Connection", "close");
   req.addResponseHeader("Www-authenticate", reply);
   req.sendResponse(401, "Unauthorized");
   req.orderlyClose();
 }