gpt4 book ai didi

http - 从网页中检索 HTML 源

转载 作者:可可西里 更新时间:2023-11-01 16:47:10 26 4
gpt4 key购买 nike

我是 Rust 的新手,正在尝试不同的项目以更加熟悉这门语言。正如标题所说,我想检索网页的 html 源代码。我知道 rust-http 但我不确定如何为此目的使用该库

有关我正在尝试做的事情的更详细描述:
给定一些网址:www.google.com
我想要底层的 HTML 源代码。

我查看了 rust-http 的 Github 文档,但缺少文档让我感到困惑。

最佳答案

(答案从编辑移至问题)

在尝试/搜索更多之后,我终于能够得到我想要的东西。下面是一些使用 Hyper 检索源代码的代码。

let req = request::Request::get(hyper::Url::parse("www.google.com").unwrap()).unwrap();
let res = req.start().unwrap()
.send().unwrap()
.read_to_string().unwrap();

println!("Response: {}", res);

关于http - 从网页中检索 HTML 源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27097694/

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