HttpClient
摘要:
private static void getHttpClient(String url) { /* 1 构造HttpClient的实例 */ HttpClient httpClient = new HttpClient(); /* 2 生成 GetMethod 对象并设置参数 */ GetMethod getMethod = new GetMethod(url); // 设置请求重试处理,用的是默认的重试处理:请求三次 getMethod.getParams().setParameter(HttpMethod... 阅读全文
posted @ 2013-01-07 10:15 雨渐渐 阅读(333) 评论(0) 推荐(0) 编辑