如何查看客户端网络速度
我正在从客户端向服务器发送文件。客户端和服务器应用程序都在同一台计算机上运行。将文件从客户端发送到服务器后,现在我需要显示在 .Net 中将文件从客户端传输到服务器所需的时间。与 Windows XP 中的复印框相同。
任何想法将不胜感激。
I am sending a file from client to server. Both the client and server applications are running in the same machine. After a sending a file from client to server, now I need to show the time it will take to transfer the file from client to server in .Net. Same as copy box in windows xp.
Any idea would be appreciate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以记住文件的大小,并将其除以传输文件所需的时间。这将为您提供传输速度估计(例如,千字节/秒)。
You can remember the size of the file, and divide it by the time it took to transfer the file. This will give you a transfer speed estimate (for instance, kilobytes / second).