R:Windows 10和Windows 7中的readLines()

时间:2018-08-01 06:17:46

标签: r windows-7 windows-10

我有一个非常简单的R代码,可以访问REST-API并返回CSV文件:

sx.url<-url("https://username:password@rest.survey-xact.dk/rest/surveys/854268/export/dataset",encoding="UTF-16")
tekst<-readLines(sx.url)

如果我查看URL,则会得到:

> sx.url
A connection with                                                                                            
description "https://username:password@rest.survey-xact.dk/rest/surveys/854268/export/dataset"
class       "url-wininet"                                                                   
mode        "r"                                                                             
text        "text"                                                                          
opened      "closed"                                                                        
can read    "yes"                                                                           
can write   "no"  

它在Linux服务器上执行时可以工作,在Windows 7上也可以工作,但是现在我已经升级到Windows 10,它返回一个character(0)向量。 它不返回任何错误。

我尝试了32位和64位的Rstudio版本1.1.453和普通RGui版本3.5.0。

我希望有人对如何解决这个问题有想法?

0 个答案:

没有答案