通过套接字发送 5MB 数据?

发布于 2024-10-11 22:06:21 字数 205 浏览 0 评论 0原文

您好,我想使用 Java 编程语言通过 TCP 从服务器向 Android 客户端发送固定数量的数据(例如 5MB)。数据并不重要,它会被丢弃在客户端,我这样做只是为了在手机上进行性能测量。

谁能推荐一种实现此目标的好方法?如何让服务器不断发送大量数据?没有从文件中读取一行,然后发送这些字节的间歇性行为......然后读取另一行并发送这些字节。

有想法吗?干杯。

Hi I want to send a fixed amount of data (say 5MB) from server to Android client over TCP using the Java programming language. The data doesn't matter it will be dropped at the client I am only doing this to do performance measurements on the phone.

Can anyone recommend a good way of accomplishing this? How can I have the server continually sending a large amount of data? Without the intermittent behaviour of reading a line from a file, then sending those bytes... then reading another line and sending those ones.

Ideas? Cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云巢 2024-10-18 22:06:21

您不需要发送文件,只需发送数据块即可。

// server which sends 5 MB on connection.
ServerSocket ss = 
Socket s = ss.accept();
s.getOutputStream().write(new byte[5*1024*1024]);
s.close();

You don't need to send a file, you could just send a block of data.

// server which sends 5 MB on connection.
ServerSocket ss = 
Socket s = ss.accept();
s.getOutputStream().write(new byte[5*1024*1024]);
s.close();
怪我闹别瞎闹 2024-10-18 22:06:21

您可以有一个大小为 1024 的字节数组,并循环地将其一遍又一遍地发送到套接字。数据不需要是唯一的。如果您觉得 KB 对您来说不够大,您可以使用更大的数组。

听起来你是在问那里的服务器。您是否也想知道客户的情况?

You could have a byte array of size 1024 and loop sending it out the socket over and over. The data doesn't need to be unique. You could use a larger array if you felt a KB isn't big enough for you.

Sounds like you were asking about the server there. Were you also wondering about the client?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文