HttpURLConnection网络请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpURLConnection网络请求相关的知识,希望对你有一定的参考价值。


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网络请求的主要内容,如果未能解决你的问题,请参考以下文章

httpURLConnection-网络请求的两种方式-get请求和post请求

HttpURLConnection请求网络数据的Post请求

Android 中使用HttpURLConnection进行网络请求详解

HttpURLConnection请求网络数据的GET请求

HttpURLConnection发送请求

AsyncTask异步加载和HttpURLConnection网络请求数据