处理:打开UDP套接字进行读取?

发布于 2024-09-02 13:05:06 字数 512 浏览 6 评论 0原文

下面是打开 TCP 套接字并读取数据的示例。有没有办法创建 UDP 套接字?

void setup() {
    c = new Client(this, "127.0.0.1", 12345); // Replace with your server's IP and port
}

void draw() {
    if (c.available() > 0) {
        input = c.readString();

http://www.processing.org/learning/libraries/sharedcanvasclient.html

Here's an example of opening and reading data from a TCP socket. Is there a way to create a UDP socket as well?

void setup() {
    c = new Client(this, "127.0.0.1", 12345); // Replace with your server's IP and port
}

void draw() {
    if (c.available() > 0) {
        input = c.readString();

http://www.processing.org/learning/libraries/sharedcanvasclient.html

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

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

发布评论

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

评论(1

丿*梦醉红颜 2024-09-09 13:05:06

您可以使用UDP库进行处理(http://ubaa.net/shared/processing/udp/ )。提供了一些示例,因此您可以轻松开始尝试 UDP。

我在很多项目中使用了UDP通信进行处理。该实现非常好,可以用于现实世界的应用。

You can use the UDP library for processing (http://ubaa.net/shared/processing/udp/). Some examples are provided, so you can start experimenting with UDP easily.

I have used UDP communication in processing a lot for many projects. The implementation is really good and ready for real world applications.

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