剛看到有人給出asp.net實(shí)現(xiàn)的計(jì)算網(wǎng)頁下載速度的方法,本方法未經(jīng)本人測試,不知道能否可靠性如何。準(zhǔn)確來說,這只是個思路吧。
private void getSpeed()
{
//鏈接開始時(shí)間
DateTime stime = DateTime.Now;
//文件
string url = "http://xxx.com/images/test.jpg ";
WebRequest myRequest = WebRequest.Create(url);
//鏈接成功
WebResponse myReponse = myRequest.GetResponse();
//取得文件的大小 字節(jié)單位
int ii = int.Parse(myReponse.ContentLength.ToString());
//取得流
Stream myStream = myReponse.GetResponseStream();
StreamReader sr = new StreamReader(myStream);
byte[] mbyte=new byte[ii];
int allbyte=(int)mbyte.Length;
int startbyte=0;
string test = " ";
while(ii> 0) //################ 循環(huán)讀取文件,并顯示進(jìn)度.....
{
int m=myStream.Read(mbyte,startbyte,allbyte);
if(m==0){break;}
startbyte+=m;
allbyte-=m;
int a1=(int)startbyte/1024;
int a2=(int)ii/1024;
test+= "連接成功..開始下載..m= "+m+ "| " + a1.ToString() + "/ " + a2.ToString() + "KB ";//startbyte + "/ " + ii.ToString();
}
//鏈接結(jié)束時(shí)間
DateTime etime=DateTime.Now;
TimeSpan ts = etime - stime;
//總共耗時(shí)
double SpeedTime = (double) ts.TotalSeconds;
double Kbps = 0;
double ShowPer = 0;
if (SpeedTime> 0)
{
//網(wǎng)絡(luò)速度
Kbps = Math.Round(Math.Round(ii*8/1024/SpeedTime*10.5)/10);
//Kbps = Math.Round(ii/1024/ SpeedTime);
}
else
{
Kbps = 10000;
}
//用來顯示當(dāng)前流量所要顯示的圖片長度
ShowPer = Math.Round(Kbps/100);
if (ShowPer <1)
ShowPer = 1;
else if(ShowPer> 82)
ShowPer = 82;
//網(wǎng)絡(luò)速度
string sp = (Math.Round(Kbps/8*10)/10).ToString();
sr.Close();
myStream.Close();
myReponse.Close();
// Response.Write(test);
Response.Write( "網(wǎng)絡(luò)速度 "+sp+ "圖片長度$ "+ShowPer+ "耗時(shí)$ "+SpeedTime+ "文件大小$ "+ii);
Response.End();
}
最后有網(wǎng)友又給出了實(shí)現(xiàn)的另一思路:
用一個頁面輸出一個3M的網(wǎng)頁(通過一個循環(huán)輸出字節(jié)),然后異步去請求這個頁面,計(jì)算開始時(shí)間與結(jié)束時(shí)間的差,然后再去計(jì)算。
思路還是老樣,就是用webRequest去獲取流文件就只是取得響應(yīng)時(shí)間,但是得不得輸出時(shí)間(自己的水平有限,不過我想肯定可以實(shí)現(xiàn))?,F(xiàn)在只是換了一個方法去獲取輸出時(shí)間。我在baidu與google也是只查到異步獲取文字內(nèi)容輸出時(shí)間可以。但是有圖片的就好像有點(diǎn)困難了。
不過最終的結(jié)果得到了,還是有點(diǎn)成績感的。呵呵。。。