14

我必须使用 Android 读取和写入数据到设备的 COM 端口。我为此使用 javax.comm 包,但是当我安装 apk 文件时,它没有显示设备的任何端口。我需要在清单文件中添加任何权限吗?

4

2 回答 2

24

您的问题与操作系统有关。Android 在后台运行 Linux,Linux 对待串行端口的方式与 Windows 不同。javax.comm还包含win32com.dll一个驱动程序文件,您将无法在 Android 设备上安装该文件。如果您确实找到了实现您想要做的事情的方法,那么您实际上无法在 Linux 环境中寻找“COM”端口。串行端口将使用不同的名称。

 Windows Com Port   Linux equivalent  
      COM 1           /dev/ttyS0  
      COM 2           /dev/ttyS1
      COM 3           /dev/ttyS2 

因此,假设您的想法可行,您必须寻找这些名称。

幸运的是,Android 确实提供了与 USB 设备接口的规定(我假设您想要连接到 USB 设备,而不是并行或 RS-232 端口)。为此,您需要将设备设置为USB 主机。以下是您要执行的操作:

  1. 得到一个USBManager.
  2. 找到您的设备。
  3. 获取USBInterfaceUSBEndpoint
  4. 打开一个连接。
  5. 传输数据。

这是我对你将如何做的粗略估计。当然,你的代码会有更成熟的做事方式。

String YOUR_DEVICE_NAME;
byte[] DATA;
int TIMEOUT;

USBManager manager = getApplicationContext().getSystemService(Context.USB_SERVICE);
Map<String, USBDevice> devices = manager.getDeviceList();
USBDevice mDevice = devices.get(YOUR_DEVICE_NAME);
USBDeviceConnection connection = manager.openDevice(mDevice);
USBEndpoint endpoint = device.getInterface(0).getEndpoint(0);

connection.claimInterface(device.getInterface(0), true);
connection.bulkTransfer(endpoint, DATA, DATA.length, TIMEOUT);

额外的阅读材料:http: //developer.android.com/guide/topics/connectivity/usb/host.html

于 2012-06-25T17:39:19.837 回答
5

我不是专家,但对于所有想要连接串行 RS-232 端口或打开串行端口但无法通过UsbManager.

mDrivers = new Vector<Driver>();
LineNumberReader r = new LineNumberReader(new FileReader("/proc/tty/drivers"));
String l;
while ((l = r.readLine()) != null) {
    String drivername = l.substring(0, 0x15).trim();
    String[] w = l.split(" +");
    if ((w.length >= 5) && (w[w.length - 1].equals("serial"))) {
        mDrivers.add(new Driver(drivername, w[w.length - 4]));
    }
}

找到所有驱动程序后,遍历所有驱动程序以获取所有设备,使用如下所示:

mDevices = new Vector<File>();
File dev = new File("/dev");

File[] files = dev.listFiles();


if (files != null) {
    int i;
    for (i = 0; i < files.length; i++) {
        if (files[i].getAbsolutePath().startsWith(mDeviceRoot)) {
            Log.d(TAG, "Found new device: " + files[i]);
            mDevices.add(files[i]);
        }
    }
}

这是Driver类构造函数,有两个成员变量:

public Driver(String name, String root) {
    mDriverName = name;
    mDeviceRoot = root;
}

要打开串行端口,您可以使用Android SerialPort API。只需在您的设备上打开串行端口,然后write. (您必须知道您的设备路径和波特率。例如,我的设备是 ttyMt2,波特率 96000。)

int baudRate = Integer.parseInt("96000");
mSerialPort = new SerialPort(mDevice.getPath(), baudRate, 0);
mOutputStream = mSerialPort.getOutputStream();
byte[] bytes = hexStr2bytes("31CE");
mOutputStream.write(bytes);

您可以从https://github.com/licheedev/Android-SerialPort-Tool下载完整的项目,而不是在此代码上浪费时间。

于 2019-09-05T17:07:45.277 回答