1 | // retrieves url with HEAD, measures how long it takes. |
2 | public static long getTimeToHEAD(String url) { |
3 | try { |
4 | if (!url.contains("//")) url = "http://" + url; |
5 | |
6 | long startTime = now(); |
7 | HttpURLConnection con = |
8 | (HttpURLConnection) new URL(url).openConnection(); |
9 | con.setRequestMethod("HEAD"); |
10 | con.getResponseCode(); |
11 | return now()-startTime; |
12 | } |
13 | catch (Exception e) { |
14 | return -1; |
15 | } |
16 | } |
Began life as a copy of #1001114
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1001555 |
Snippet name: | getTimeToHEAD |
Eternal ID of this version: | #1001555/1 |
Text MD5: | 0003d11aff6b807caea9294547d2a90e |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2015-10-24 18:35:48 |
Source code size: | 467 bytes / 16 lines |
Pitched / IR pitched: | No / Yes |
Views / Downloads: | 570 / 827 |
Referenced in: | [show references] |