我在办公室上网时遇到了一些问题。这可能是由于局域网的设置。我尝试了几乎所有我在网上遇到的可能的方法(见下文) ,但仍然是徒劳的。
方法1: 使用 --internet2
调用 R
方法2: 通过设置 ~/Rgui.exe http_proxy=http:/999.99.99.99:8080/ http_proxy_user=ask
调用 R
方法3: 设置 Setinternet2=TRUE
方法四:
curl <- getCurlHandle()
curlSetOpt(.opts = list(proxy = '999.99.99.99:8080'), curl = curl)
Res <- getURL('http://www.cricinfo.com', curl = curl)
In above all methods I can able to load packages directly from CRAN also able to download files using download.file command
But using getURL(RCurl)
, readHTMLTable(XML)
, htmlTreeParse(XML)
commands I am unable to extract web data. I am getting ~<HEAD>\n<TITLE>Access Denied</TITLE>\n</HEAD>~
error.
How to set LAN proxy settings for XML package in R?