idhttp和响应编码问题

时间:2018-09-06 23:47:10

标签: delphi encoding http-headers indy idhttp

在Indy 10.6.2和Delphi XE8中,library(dplyr) mtcars2 = mtcars mtcars2$mpg = as.character(mtcars2$mpg) mtcars2$mpg[1]=NA mtcars2$mpg[2]=NA hmm = mtcars2 %>% mutate_if(is.character, coalesce, "NO VALUE") 有点问题。

我需要从factor响应中获取标头。我这样做:

TIdHTTP

GET已正确加载,但是如果我尝试读取标题,则将重音符号替换为Try SS := TStringStream.Create(''); newhttp.Get(link,SS); html := SS.datastring; Except end; SS.free;

html

两个方法在?中具有相同的Location := newhttp.Response.RawHeaders.Values['location']; Location := newhttp.Response.Location; 字符。

我需要获取带有重音符号的下载URL。我也尝试过:

?

没有成功。

我的Location是用

创建的
newhttp.Response.RawHeaders.SaveToStream(SS);

有什么建议吗?

0 个答案:

没有答案