// retrieves url with HEAD. returns content length, // or -1 in case of error. static long getURLSizeByHEAD(String url) { url = absoluteURL(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.getContentLength(); } catch (IOException e) { return -1; } finally { closeURLConnection(conn, in); } }
Began life as a copy of #1001555
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: | #1002941 |
| Snippet name: | getURLSizeByHEAD |
| Eternal ID of this version: | #1002941/4 |
| Text MD5: | e1731bf0b583fd8738f63680b6283626 |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX fragment (include) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2017-12-03 23:44:45 |
| Source code size: | 544 bytes / 18 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 994 / 949 |
| Version history: | 3 change(s) |
| Referenced in: | [show references] |