时间:2021-05-20
废话少说,直接上代码。简单易懂。
xml如下:
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_net" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.waterlamp.NetActivity"> <Button android:id="@+id/okhttp" android:text="okhttp请求" android:layout_width="150dp" android:layout_height="37dp" android:layout_alignBottom="@+id/http" android:layout_alignParentEnd="true" android:layout_alignParentTop="true" /> <Button android:id="@+id/http" android:text="HTTP请求" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentStart="true" /> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentStart="true" android:layout_below="@+id/okhttp" android:layout_alignParentBottom="true" android:layout_alignParentEnd="true" > <TextView android:id="@+id/stringData" android:layout_width="match_parent" android:layout_height="match_parent" /> </ScrollView></RelativeLayout>activity如下:
public class NetActivity extends AppCompatActivity implements View.OnClickListener{private Button http,okhttp; private TextView stringData; private String web="https://pile 'junit:junit:4.12'}以上这篇HttpURLConnection和okHttp两种获取网络数据的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android网络编程分为两种:基于http协议的,和基于socket的。基于Http协议:HttpClient、HttpURLConnection、Async
在为jTool提供offset(获取当前节点位置)方法时,先后使用了两种方式进行实现,现整理出来以作记录。前后共使用了两种方式实现了该方法,这里将这两种方法分别
java模拟post请求发送json,用两种方式实现,第一种是HttpURLConnection发送post请求,第二种是使用httpclient模拟post请
Android系统提供了两种HTTP通信类,HttpURLConnection和HttpClient。尽管Google在大部分安卓版本中推荐使用HttpURLC
Java获取文件大小今天写代码时需要实现获取文件大小的功能,目前有两种实现方法,一种是使用File的length()方法;另外一种是使用FileInputStr