gpt4 book ai didi

html - 从C代码中获取HTML内容

转载 作者:行者123 更新时间:2023-11-30 20:57:04 26 4
gpt4 key购买 nike

我实现了一个 Java 代码,它可以向远程网站发送请求并从中检索数据。但我想要用 C 语言编写相同的代码,但我在 C 库中找不到那么多帮助。有人可以给我任何提示吗?

public static String getHTML(String urlToRead) {
URL url;
HttpURLConnection conn;
BufferedReader rd;
String line;
String result = "";

try {
url = new URL(urlToRead);
conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
rd = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
result += line;
}
rd.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}

public static void main(String[] args) throws IOException {
InetAddress thisIp = null;
try {
thisIp = InetAddress.getLocalHost();
} catch (UnknownHostException e1) {
e1.printStackTrace();
}
System.out.println(getHTML("http://api.hostip.info/get_html.php?ip="
+ thisIp.getHostAddress()));
}

最佳答案

C 没有任何像标准 Java 库那样方便地获取网站的功能。

您可以使用libcurl这是一种相当方便的方法,可以自己在套接字中编写所有内容,在这种情况下,我会说首先熟悉 C 网络编程:Beej's Guide to Network Programming

关于html - 从C代码中获取HTML内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15549062/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com