码迷,mamicode.com
首页 > Web开发 > 详细

HttpURLConnection网络请求

时间:2017-09-27 16:18:10      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:try   round   feed   cte   abs   class   tostring   json   protect   


new AsyncTask<String,Void,String>(){

@Override
protected String doInBackground(String... strings) {
String path=strings[0];
try {
URL url=new URL(path);
HttpURLConnection con= (HttpURLConnection) url.openConnection();

if(code==200){
InputStream is=con.getInputStream();
ByteArrayOutputStream baos=new ByteArrayOutputStream();
byte[] buffer=new byte[1024];
int len=0;
while ((len=is.read(buffer))!=-1){
baos.write(buffer,0,len);
}
//hajjahdjhabs
//juguyg
is.close();
baos.flush();
baos.close();
return baos.toString();
}
;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}

@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
Gson gson=new Gson();
TouTiao tt=gson.fromJson(s,TouTiao.class);
list=tt.data.pc_feed_focus;
MyAdapter adapter=new MyAdapter(MainActivity.this,list);
listView.setAdapter(adapter);

}
}.execute("http://www.toutiao.com/api/pc/focus/");

HttpURLConnection网络请求

标签:try   round   feed   cte   abs   class   tostring   json   protect   

原文地址:http://www.cnblogs.com/wang-chunqi/p/7602016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!