Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for HttpHead (2.41 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        @Override
        public ResponseData doHead(final String url) {
            HttpUriRequest httpHead;
            try {
                httpHead = new HttpHead(url);
            } catch (final IllegalArgumentException e) {
                throw new CrawlingAccessException("The url may not be valid: " + url, e);
            }
            return doHttpMethod(url, httpHead);
        }
    
        /**
         * Executes an HTTP method for the given URL and request.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 53.7K bytes
    - Viewed (0)
Back to top