当端口存在时,为什么我会收到 Java NoSuchPortException?

发布于 2024-09-04 23:32:14 字数 739 浏览 3 评论 0原文

下面有以下生产代码,我将其用于新驱动程序。 portName 是 COM4,并且该端口存在于 PC 上(我可以使用超级终端连接到它),那么为什么 Javacomm 会抛出 NoSuchPortException? COM4 在设备管理器中显示良好。也

    final String portName = getSerialPort();
    try {
        final CommPortIdentifier id = CommPortIdentifier.getPortIdentifier(portName);
        port = (SerialPort) id.open(getName(), 1000);
    } catch (NoSuchPortException nspe) {
        report(SeverityCode.LEVEL2, getName(), "PIN Pad is not connected to " + portName + " port, or the port does not exist.");
        return;
    } catch (PortInUseException piue) {
        report(SeverityCode.LEVEL2, getName(), portName + " port is already in-use by some other device. Reason: " + piue.getMessage());
        return;
    }

Got the following production code below, I'm using it for a new driver. portName is COM4 and this port exists on the PC (and I can connect to it with hyperterminal), so why does Javacomm throw a NoSuchPortException? COM4 shows up fine in device mgr. too

    final String portName = getSerialPort();
    try {
        final CommPortIdentifier id = CommPortIdentifier.getPortIdentifier(portName);
        port = (SerialPort) id.open(getName(), 1000);
    } catch (NoSuchPortException nspe) {
        report(SeverityCode.LEVEL2, getName(), "PIN Pad is not connected to " + portName + " port, or the port does not exist.");
        return;
    } catch (PortInUseException piue) {
        report(SeverityCode.LEVEL2, getName(), portName + " port is already in-use by some other device. Reason: " + piue.getMessage());
        return;
    }

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

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

发布评论

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

评论(1

小清晰的声音 2024-09-11 23:32:14

尝试使用 CommPortIdentifier.getPortIdentifiers() 枚举系统上可用的端口列表,并打印列出的内容。您确定已将 jarfiles 和 dll 安装在正确的文件夹中吗?如果是,则尝试使用 CommPortIdentifier.addPortName(java.lang.String portName, int portType, CommDriver driver) 添加 COM4。您可以将 driver 参数设置为 null 以使用默认驱动程序。

Try enumerating the list of ports that are available on your system using the CommPortIdentifier.getPortIdentifiers() and print what's listed. Are you sure that you installed the jarfiles and dll in the correct folders? If yes, then try adding COM4 using CommPortIdentifier.addPortName(java.lang.String portName, int portType, CommDriver driver) .You can set the driver parameter to null to use the default driver.

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