程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-(MFC,socket)C++從http響應中讀取到文件字符數組,但無法寫入到文件中,顯示為0kb

c++-(MFC,socket)C++從http響應中讀取到文件字符數組,但無法寫入到文件中,顯示為0kb

編輯:編程綜合問答
(MFC,socket)C++從http響應中讀取到文件字符數組,但無法寫入到文件中,顯示為0kb

resp_leng= recv(sock, (char*)&buffer, BUFFERSIZE, 0);
npos=string(buffer).find("\r\n\r\n",0);
if(resp_leng>0 )
{
if ( npos >= resp_leng-1 && flag)
{
response+= string(buffer).substr(0,resp_leng);
}
else if( npos < resp_leng-1 && flag)
{
response+= string(buffer).substr(0,npos);
of<<string(buffer).substr(npos+4,resp_leng-npos-4);
flag = 0;
}
else
{
of<<string(buffer).substr(0,resp_leng);
}
}

    注:
    HTTP響應
    HTTP/1.1 200 OK

Content-Type: text/plain
Content-Length: 8
Accept-Ranges: bytes
Server: HFS 2.3 beta
Last-Modified: Thu, 31 Dec 2015 09:29:20 GMT
Content-Disposition: filename="test.txt";

testtest

問題:
只是想把“testtest”保存到本地,但始終文件為0kb
而debug下str1 = string(buffer).substr(npos+4,resp_leng-npos-4);的結果的確為
“testtest”的字符串,而且將str1拷貝到str2,在保存,也會出現同樣的問題;
目前懷疑是不是編碼問題,但是服務器端的文件test.txt為ANSI編碼呀

最佳回答:


算了還是自己來吧,結果是緩沖區太大數據沒有完全讀出來

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved