百度统计 data api java_Java实现百度统计api调用

本文介绍如何使用Java实现调用百度统计的HTTPS接口。通过创建一个`HttpUtils`类,利用SSLContext和TrustManager信任所有证书,实现POST请求发送数据到服务器,并获取返回的响应内容。
摘要由CSDN通过智能技术生成

// 先写一个能调用https的工具类

public class HttpUtils {

private static class TrustAnyTrustManager implements X509TrustManager {

public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {

// TODO Auto-generated method stub

}

public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException {

// TODO Auto-generated method stub

}

public X509Certificate[] getAcceptedIssuers() {

// TODO Auto-generated method stub

return null;

}

}

private static class TrustAnyHostnameVerifier implements HostnameVerifier {

public boolean verify(String arg0, SSLSession arg1) {

// TODO Auto-generated method stub

return false;

}

}

/**

* post方式请求服务器(https协议)

*

* @param url

*            请求地址

* @param content

*            参数

* @param charset

*            编码

* @return

* @throws NoSuchAlgorithmException

* @throws KeyManagementException

* @throws IOException

*/

public static byte[] post(String url, String content, String charset)

throws NoSuchAlgorithmException, KeyManagementException,

IOException {

SSLContext sc = SSLContext.getInstance("SSL");

sc.init(null, new TrustManager[] { new TrustAnyTrustManager() },

new java.security.SecureRandom());

URL console = new URL(url);

HttpsURLConnection conn = (HttpsURLConnection) console.openConnection();

conn.setSSLSocketFactory(sc.getSocketFactory());

conn.setHostnameVerifier(new TrustAnyHostnameVerifier());

conn.setDoOutput(true);

conn.connect();

DataOutputStream out = new DataOutputStream(conn.getOutputStream());

out.write(content.getBytes(charset));

// 刷新、关闭

out.flush();

out.close();

InputStream is = conn.getInputStream();

if (is != null) {

ByteArrayOutputStream outStream = new ByteArrayOutputStream();

byte[] buffer = new byte[1024];

int len = 0;

while ((len = is.read(buffer)) != -1) {

outStream.write(buffer, 0, len);

}

is.close();

return outStream.toByteArray();

}

return null;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值