我正在尝试使用urlread()
MATLAB 中的函数来抓取网页,尽管我遇到了以前从未见过的问题。当我运行代码时
X = urlread('http://espn.go.com/mens-college-basketball/schedule/_/date/20141114');
我得到错误
Error using urlreadwrite (line 92)
The server did not find a resource to match this request.
Error in urlread (line 36)
[s,status] = urlreadwrite(mfilename,catchErrors,url,varargin{:});
当我尝试访问浏览器上的链接 ( http://espn.go.com/mens-college-basketball/schedule/_/date/20141114 ) 时,访问该页面没有问题。有没有人可以解决这个问题?