Package org.nutz.socialauth.alipay.util.httpClient

Examples of org.nutz.socialauth.alipay.util.httpClient.HttpResponse


        request.setCharset(AlipayConfig.input_charset);

        request.setParameters(generatNameValuePair(sPara));
        request.setUrl(gateway+"_input_charset="+AlipayConfig.input_charset);

        HttpResponse response = httpProtocolHandler.execute(request);
        if (response == null) {
            return null;
        }
       
        String strResult = response.getStringResult();

        return strResult;
    }
View Full Code Here

TOP

Related Classes of org.nutz.socialauth.alipay.util.httpClient.HttpResponse

Copyright © 2018 www.massapicom. 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.