Package our.apache.commons.httpclient.methods

Examples of our.apache.commons.httpclient.methods.GetMethod.releaseConnection()


                // Convert the response code to a binary "did this send work or not"
                succeeded = (statusCode == HttpURLConnection.HTTP_OK);
            }
        } finally {
            // Release the connection.
            method.releaseConnection();
        }

        // Return send status
        return succeeded;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.