`
yzyspy
  • 浏览: 80934 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android http通信(一) HttpURLConntection

阅读更多

举例:从网络上下载图片

String urlpath="http://i2.sinaimg.cn/dy/dsgb/20083.jpg";
    	try {
			URL url=new URL(urlpath);
			
			HttpURLConnection con = (HttpURLConnection) url.openConnection();
			
			con.setConnectTimeout(6000);
			con.setRequestMethod("GET");
			
			if(con.getResponseCode()==200){
				byte[] imagebytes = readStreamtoBytes(con.getInputStream());
				
				File file =new File("pic.jpg");
				
				FileOutputStream fos =new FileOutputStream(file);
				fos.write(imagebytes);
				fos.close();
			}

 

public static byte[] readStreamtoBytes(InputStream instream) throws IOException{
    	
    	ByteArrayOutputStream outstream =new ByteArrayOutputStream();
    	
    	int len=-1;
    	byte[] b = new byte[1024];
		while((len = instream.read(b)) != -1){
    		 
			outstream.write(b, 0, len);
    	}
		 outstream.flush();
		 outstream.close();
		 instream.close();
		 
		 return outstream.toByteArray();
    	
    }

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics