1

首先,我是 Android 和 dot42 的新手。我已经构建了一个 UDP 侦听器类,它在 Windows 应用程序中运行良好。我正在使用 System.Net.Sockets.UdpClient 类。

现在,我尝试在 dot42 项目中使用我的 UDP 侦听器类,但我收到错误消息

找不到类型 System.Net.Sockets.UdpClient。

我想,这个类在 dot42 中不可用?

有没有办法可以为 Android 应用程序使用下面的相同代码(或仅进行一些修改)?

using System;
using System.Net;
using System.Net.Sockets;

namespace FSInterface
{
    public class UDPReceiver
    {
        private UdpClient _udpRx;
        private IPEndPoint ep;
        private int _port;

        public delegate void BytesReceive(byte[] buffer);
        public event BytesReceive OnBytesReceive;

        public UDPReceiver(int port)
        {
            _port = port;
            _udpRx = new UdpClient();
            _udpRx.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
            _udpRx.ExclusiveAddressUse = false;
            ep = new IPEndPoint(IPAddress.Any, _port);
            _udpRx.Client.Bind(ep);
            _udpRx.BeginReceive(new AsyncCallback(ReceiveCallback), null);
        }

        private void ReceiveCallback(IAsyncResult ar)
        {
            _udpRx.BeginReceive(new AsyncCallback(ReceiveCallback), null);

            byte[] buffer = _udpRx.EndReceive(ar, ref ep);

            if (OnBytesReceive != null)
            {
                OnBytesReceive(buffer);
            }
        }
    }
}
4

2 回答 2

1

一点更新。我们在 Apache License 2.0 下发布了 .NET 实现。您现在可以自己添加缺少的类型。https://github.com/dot42/api

于 2014-03-11T11:24:09.763 回答
1

Dot42 是一个很有前途的项目,还缺少更完整的 BCL 集。

在这种情况下,您应该使用 java 类。您可以在 java 中找到许多客户端 UDP 代码示例。如果您想在常规 .NET 和 dot42 之间共享代码,则必须使用与常规 .NET 和 Dot42 单独实现的 udp 方法的接口。

于 2014-01-09T23:28:38.227 回答