我有一个 servlet 上下文侦听器,其中有一个串行端口侦听器。在这个监听器中,我以这种方式保存来自串行端口的字节:
public void contextInitialized(ServletContextEvent contextEvent){
context = contextEvent.getServletContext();
serial = SerialFactory.createInstance();
serial.open(Serial.DEFAULT_COM_PORT, 19200);
serial.addListener(new SerialDataListener(){
@Override
public void dataReceived(SerialDataEvent arg0) {
private byte[] serialDataByte;
serialDataByte = arg0.getData().getBytes();
context.setAttribute("serialData", serialDataByte);
seriale.write(serialDataByte); //the echo on serial port show me the right bytes
}
});
}
在我的控制器上,我通过以下方式访问串行端口数据:
private byte[] temp;
temp = (byte[]) getServletContext().getAttribute("serialData");
for(int i=0; i<temp.length;i++){
output.println(Integer.toHexString(temp[i] & 0x00FF));
}
我将这个字节数组发送到串口:
aa 7f 40 a 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fe 1a
长度为 69。有时在我的临时数组中,我只有原始数组的一小部分,有时:
aa 7f 40 a 72 0 0 0 0 0 0 0 0 0 0
有时:
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fe 1a
有时是 69 字节的正确数组。如何将从串口获取的确切数据传递给我的控制器?提前致谢