だから、私はRS-232DB9シリアルポートを介して接続するカードロックシステムデバイスを持っています。それを使って外部機器を扱うのは初めてです。だから私はマニュアルを読みました、そしてそれは送信手順のテキストフォーマットが次のように定義されていると言っています:
-テキストは、STXとETCの間で最大500文字で構成されている必要があります
-LRCで計算された領域は、STXからETXまでの最初の文字の範囲です。
制御文字(STX、ETX、ACK、NAK)とその16進コードのリストもあります。
これについてはわかりません。教えてください。また、デバイスが特定のポートに接続されているかどうかを検出できますか?
私は以下のコードを使用して通信ポートに接続することができました:
public class TwoWaySerialComm
{
protected InputStream inputStream;
protected OutputStream outputStream;
public TwoWaySerialComm()
{
super();
}
void connect ( String portName ) throws Exception
{
CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(portName);
if ( portIdentifier.isCurrentlyOwned() )
{
System.out.println("Error: Port is currently in use");
}
else
{
CommPort commPort = portIdentifier.open(this.getClass().getName(),2000);
if ( commPort instanceof SerialPort )
{
SerialPort serialPort = (SerialPort) commPort;
serialPort.setSerialPortParams(9600,SerialPort.DATABITS_7,SerialPort.STOPBITS_1,SerialPort.PARITY_ODD);
inputStream = serialPort.getInputStream();
outputStream = serialPort.getOutputStream();
(new Thread(new SerialReader(inputStream))).start();
(new Thread(new SerialWriter(outputStream))).start();
}
else
{
System.out.println("Error: Only serial ports are handled by this example.");
}
}
}
public InputStream getInputStream() {
return inputStream;
}
public void setInputStream(InputStream inputStream) {
this.inputStream = inputStream;
}
public OutputStream getOutputStream() {
return outputStream;
}
public void setOutputStream(OutputStream outputStream) {
this.outputStream = outputStream;
}
/** */
public static class SerialReader implements Runnable
{
InputStream in;
public SerialReader ( InputStream in )
{
this.in = in;
}
public void run ()
{
byte[] buffer = new byte[1024];
int len = -1;
try
{
while ( ( len = this.in.read(buffer)) > -1 )
{
System.out.print(new String(buffer,0,len));
}
}
catch ( IOException e )
{
e.printStackTrace();
}
}
}
/** */
public static class SerialWriter implements Runnable
{
OutputStream out;
public SerialWriter ( OutputStream out )
{
this.out = out;
}
public void run ()
{
try
{
int c = 0;
while ( ( c = System.in.read()) > -1 )
{
this.out.write(c);
}
}
catch ( IOException e )
{
e.printStackTrace();
}
}
}
public static void main ( String[] args )
{
try
{
TwoWaySerialComm comm = new TwoWaySerialComm();
comm.connect("COM3");
}
catch ( Exception e )
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
そして、これは私が見つけたコードで、バイトの配列からLRCを取得するために使用されます。
public byte calculateLRC(byte[] data)
{
byte checksum = 0;
for (int i = 0; i <= data.length - 1; i++) {
checksum = (byte) ((checksum + data[i]) & 0xFF);
}
checksum = (byte) (((checksum ^ 0xFF) + 1) & 0xFF);
return checksum;
}
おそらく、テキスト「CES01」をデバイスに適切に送信する必要がありますが、どうすればよいですか?