.xlsx 파일을 사이트에서 자동으로 다운로드하는 데 큰 문제가 있습니다. 다음 코드를 시도하고 쿠키이 준비쿠키와 URL이 포함 된 파일을 다운로드하는 방법은 무엇입니까?
Dim request As HttpWebRequest = CType(WebRequest.Create(("http://www.trademap.org/Country_SelProduct_TS.aspx?nvpm=1|||||0101|||4|1|1|1|2|1|2|1|1")), HttpWebRequest)
request.CookieContainer = New CookieContainer()
Dim response As HttpWebResponse = CType(request.GetResponse(), HttpWebResponse)
For Each cook As Cookie In response.Cookies
msgbox(cook.value)
Next
내가 쿠키를 가지고 있지만 요청하지 않고 쿠키와 URL을 사용하여 파일을 다운로드하는 방법을 모르겠어요. webclient.downloadfile 또는 이와 비슷한 방법으로 수행 할 수 있습니까?
귀하는 해당 웹 사이트에서 파일을 다운로드하는 것에 대해 처음으로 질문하지 않습니다. https://stackoverflow.com/questions/46457912/how-to-download-xls-file-from-website-without-file-name-and-extension-in-url?rq=1 – Chillzy
@Chillzy 그게 OP 였어. 너무. –