在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、引言 自己想要实现一个简单的web服务器,遇到一个问题是需要获取发送给客户端的文件大小,即:Content-Length参数。 二、方法 方法一: long GetFileLength(string strPath) { long lSize = 0; ifstream fin(strPath.c_str(), ios::in | ios::binary); char szBuf[1024*1000] = ""; while (fin.read(szBuf, 1024 * 1000 - 1)) { lSize += strlen(szBuf); memset(szBuf, 0, 1024*1000); } fin.close(); lSize += strlen(szBuf); return lSize; } 方法二: long GetFileLength(string strPath) { ifstream fin(strPath.c_str(), ios::in | ios::binary); fin.seekg(0, ios_base::end); streampos pos = fin.tellg(); long lSize = static_cast<long>(pos); fin.close(); return lSize; }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论