利用HttpURLConnection对象和Internet交互
摘要:
1.从Internet获取网页发送请求,将网页以流的形式读回来.1)创建一个URL对象:URL url = new URL("http://www.sohu.com");2)利用HttpURLConnection对象从网络中获取网页数据:HttpURLConnection conn = (HttpURLConnection) url.openConnection();3)设置连接超时:conn.s... 阅读全文
posted @ 2010-07-05 13:29 tt_mc 阅读(2313) 评论(1) 推荐(1) 编辑