安卓必备,HttpUrlConnection
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓必备,HttpUrlConnection相关的知识,希望对你有一定的参考价值。
package aaa; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class aaa { public static void main(String[] args) throws IOException { URL url = new URL("https://123.sogou.com/"); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); StringBuilder build = new StringBuilder(); BufferedReader read = new BufferedReader(new InputStreamReader(conn.getInputStream())); String s; while ((s = read.readLine()) != null) { build.append(s + "\n"); } String html=build.toString(); } }
以上是关于安卓必备,HttpUrlConnection的主要内容,如果未能解决你的问题,请参考以下文章
安卓HttpURLConnection 进行http请求(传递数据 获取数据 主线程禁止网络请求)以get方式为例
安卓用httpurlconnection怎么调用接口地址并获取返回值
HTTP基础与Android之(安卓与服务器通信)——使用HttpClient和HttpURLConnection
Python range 数据类型 [学习 Python 必备基础知识][看此一篇就够了][range()][range 元素元素检测元素索引查找切片负索引][检测 range 对象是否相等](代码片