如何下载 HTML 的源代码
How can I do download of source code of an HTML
我想下载一个HTML的源代码。我该怎么做?
我尝试使用包 xml2
的 read_html
。但是我有一条错误消息。
test <- read_html('https://www.epicurious.com/search/Tropical%20Glazed%20Ham%20with%20Curried%20Pineapple%20Chutney')
Error in open.connection(x, "rb") : HTTP error 400.
来自Mozilla,可通过源码查看源码
当我使用您提供的 url 时,read_html
似乎对我来说超时了,但是作为解决方法,请使用 [=12] 将原始 html 代码保存在您的文件系统中=] 然后 read_html
来自目的地:
temp <- tempfile()
download.file('https://www.epicurious.com/search/Tropical%20Glazed%20Ham%20with%20Curried%20Pineapple%20Chutney',
destfile = temp)
res <- readLines(temp)
library(xml2)
parsed <- read_html(temp)
我想下载一个HTML的源代码。我该怎么做?
我尝试使用包 xml2
的 read_html
。但是我有一条错误消息。
test <- read_html('https://www.epicurious.com/search/Tropical%20Glazed%20Ham%20with%20Curried%20Pineapple%20Chutney')
Error in open.connection(x, "rb") : HTTP error 400.
来自Mozilla,可通过源码查看源码
read_html
似乎对我来说超时了,但是作为解决方法,请使用 [=12] 将原始 html 代码保存在您的文件系统中=] 然后 read_html
来自目的地:
temp <- tempfile()
download.file('https://www.epicurious.com/search/Tropical%20Glazed%20Ham%20with%20Curried%20Pineapple%20Chutney',
destfile = temp)
res <- readLines(temp)
library(xml2)
parsed <- read_html(temp)