0

我在我的项目中使用 comm.jar 从 com 端口读取数据,但是当我侦听并等待来自 com 端口的任何数据时,此异常......

Exception in thread "Win32SerialPort Notification thread" java.lang.ExceptionInInitializerError
        at getsmsf1.IncomingSms.<init>(IncomingSms.java:160)
        at getsmsf1.Sms.lineReceived(Sms.java:563)
        at getsmsf1.Sms.serialEvent(Sms.java:463)
        at com.sun.comm.Win32SerialPort.sendDataAvailEvent(Win32SerialPort.java:649)
        at com.sun.comm.NotificationThread.run(Win32SerialPort.java:878)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 65533
        at getsmsf1.PduCodec.<clinit>(PduCodec.java:299)
        ... 5 more
4

1 回答 1

0
java.lang.ArrayIndexOutOfBoundsException: 65533

似乎是根本原因。看来您正在尝试超出范围的索引 65533。

Win32SerialPort Notification thread 

只是发生此异常的线程名称。

于 2012-09-05T15:49:25.657 回答