static int getURLReturnCode(String url) { if (!url.contains("//")) url = "http://" + url; HttpURLConnection conn = null; InputStream in = null; try { conn = (HttpURLConnection) new URL(url).openConnection(); conn.setRequestMethod("HEAD"); conn.setRequestProperty("X-No-Cookies", "1"); in = conn.getInputStream(); return conn.getResponseCode(); } catch (IOException e) { silentException(e); return -1; } finally { closeURLConnection(conn, in); } }
Began life as a copy of #1002941
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: | #1009682 |
Snippet name: | getURLReturnCode - queries using HEAD, returns 200, 404 and so on |
Eternal ID of this version: | #1009682/4 |
Text MD5: | aebcd26bf86c4700c8dfd424a7c8384b |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-08-13 23:46:59 |
Source code size: | 516 bytes / 18 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 418 / 456 |
Version history: | 3 change(s) |
Referenced in: | [show references] |