用FtpWebRequest类上传图片后显示不出来(在线等待中)
--------------------编程问答-------------------- 没有人吗 --------------------编程问答-------------------- 没人回答呀 --------------------编程问答-------------------- 顶一下 --------------------编程问答-------------------- Stream strm = reqFTP.GetRequestStream();strm.Write(buff, 0, buffLength);
strm.Close();
fs.Close();
该处写法更正为:
Stream strm = reqFTP.GetRequestStream();
contentLen = fs.Read(buff, 0, buffLength); // 每次读文件流的2kb
while (contentLen != 0) // 流内容没有结束
{
strm.Write(buff, 0, contentLen);// 把内容从file stream 写入 upload stream
contentLen = fs.Read(buff, 0, buffLength);
}
--------------------编程问答--------------------
补充:.NET技术 , ASP.NET