使用R中的getURL从本地加载HTML页面

时间:2015-04-22 17:18:06

标签: html r rcurl

我尝试使用getURL从本地目录加载HTML页面:

library(RCurl)
my_page<-getURL("my_page.html")

但是我得到了

Error in function (type, msg, asError = TRUE)  : 
  Could not resolve host: my_page.html

我如何描述正确的道路?

1 个答案:

答案 0 :(得分:2)

尝试

my_page<-getURL(paste0("file:///", getwd(), "/my_page.html"))