android studio 访问网页代码
时间: 2023-06-25 18:05:26 浏览: 91
androidstudio访问URL
你可以使用 Java 中的 HttpURLConnection 类或 OkHttp 库来访问网页代码。以下是一个使用 HttpURLConnection 的示例代码:
```java
URL url = new URL("https://www.example.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
int responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
// 读取响应数据
BufferedReader in = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 处理响应数据
String responseData = response.toString();
System.out.println(responseData);
} else {
// 处理错误情况
}
```
这段代码通过 HttpURLConnection 发送 GET 请求并获取响应数据。你可以将 "https://www.example.com" 替换为你想要访问的网页 URL,然后在 `if` 块中处理响应数据。
阅读全文