首页 > 代码库 > 网路编程

网路编程

一、网页源码查看器

1.shift+F2调用httpwatch(为网页抓包数据分析工具【需下载】):

2.HttpURLConnection:用于发送和接收数据

3.必须有联网权限:android.permission.INTERNET

4.异常处理方式:

//若出现此种异常,W/System.err(5504): android.os.NetworkOnMainThreadExceptionW/System.err(5504): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1148)//在oncreate方法中加入 StrictMode.ThreadPolicy policy=new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy);

5.ScrollView(滚动条):使用注意:只能有一个孩子

二、消息机制的写法

1.如果在主线程中进行了耗时的操作(比如连接网络,拷贝数大的数据)

网路编程