okhttp是一个Java的HTTP+SPDY客户端开发包,同时也支持Adroid。
示例代码:
OkHttpCliet cliet = ew OkHttpCliet(); Strig get(URL url) throws IOExceptio { HttpURLCoectio coectio = cliet.ope(url); IputStream i = ull; try { // Read the respose. i = coectio.getIputStream(); byte[] respose = readFully(i); retur ew Strig(respose, "UTF-8"); } fially { if (i != ull) i.close(); } }









评论