Package net.sourceforge.jnlp.util
Class HttpUtils
- java.lang.Object
-
- net.sourceforge.jnlp.util.HttpUtils
-
public class HttpUtils extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description HttpUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
consumeAndCloseConnection(java.net.HttpURLConnection c)
Ensure a HttpURLConnection is fully read, required for correct behaviorstatic void
consumeAndCloseConnectionSilently(java.net.HttpURLConnection c)
Ensure a HttpURLConnection is fully read, required for correct behavior.
-
-
-
Method Detail
-
consumeAndCloseConnectionSilently
public static void consumeAndCloseConnectionSilently(java.net.HttpURLConnection c)
Ensure a HttpURLConnection is fully read, required for correct behavior. Captured IOException is consumed and printed- Parameters:
c
- the connection to be closed silently
-
consumeAndCloseConnection
public static void consumeAndCloseConnection(java.net.HttpURLConnection c) throws java.io.IOException
Ensure a HttpURLConnection is fully read, required for correct behavior- Parameters:
c
- connection to be closed- Throws:
java.io.IOException
- if connection fade
-
-