我最近偶然发现了Java Communication API,这是一个javax
用于纯 Java 中“串行通信”的包。我以前多次听说过串行通信,但我想我不明白“串行通信”究竟是什么意思,或者它意味着什么。
根据维基百科:
在电信和计算机科学中,串行通信是通过通信通道或计算机总线一次一位地、顺序地发送数据的过程。
好的...所以 Java 通信 API 允许我一次读取/写入数据。但这甚至意味着什么?!?我不能自己做吗(这里是伪代码)?:
String str = "I want to send this bit by bit.";
byte[] strAsBytes = str.getBytes();
byte[] bits = new byte[strAsBytes.length * 8]; // For each byte we need 8 bits.
for(int i = 0; i < strAsBytes.length; i++) {
for(int j = 0; j < 8; j++) {
// Something like this (again this is just pseudo-code).
// Regardless, populate all elements in the bits array with the
// bit in the position of the current byte.
bits[i*j + j] = getBit(strAsBytes[i], j);
}
}
// Sends the array of bits over a network, maybe using Netty and TCP,
// or something. Sends each bit one by one.
networkManager.sendBitByBit(bits);
// Retrieves the value of a bit at any position in a byte (theByte).
public byte getBit(byte theByte, int position) {
return (theByte) & (0x01 << pos) ;
}
我觉得“串行通信”一词不仅仅意味着“一次发送一点”。这是否意味着我可以使用它从机器上的串行端口读取/写入?还有什么?!?
我想我正在寻找一个简单的英语,外行解释更广泛的术语“串行通信”是什么,你可以用它做什么类型的事情,然后把它放到 Java 通信 API 的上下文中。如果有一个或两个您可以使用 API 来完成的示例,那也很棒。