快速业务通道

利用Java实现串口全双工通讯 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
fyAll();   return CurrentMsg; } /** * * This function stores a character captured from the serial port to the * buffer area. * * @param t The char value of the character to be stored. * */ public synchronized void PutChar(int c) {   Character d = new Character((char) c);   Content = Content.concat(d.toString());   if (LengthNeeded < Content.length())   {    available = true;   }   notifyAll(); } }

利用Java实现串口全双工通讯(4)

时间:2010-12-12

3.ReadSerial

ReadSerial是一个进程,它不断的从指定的串口读取数据并将其存放到缓冲区中。

public ReadSerial(SerialBuffer SB, InputStream Port)

本函数构造一个ReadSerial进程,参数SB指定存放传入数据的缓冲区,参数Port指定从串口所接收的数据流。

public void run()

ReadSerial进程的主函数,它不断的从指定的串口读取数据并将其存放到缓冲区中。

ReadSerial的源代码如下:

package serial; import java.io.*; /** * * This class reads message from the specific serial port and save * the message to the serial buffer. * */ public class ReadSerial extends Thread {   private SerialBuffer ComBuffer;   private InputStream ComPort; /** * * Constructor * * @param SB The buffer to save the incoming messages. * @param Port The InputStream from the specific serial port. * */ public ReadSerial(SerialBuffer SB, InputStream Port) {   ComBuffer = SB;   ComPort = Port; } public void run() {   int c;   try   {    while (true)    {     c = ComPort.read();     ComBuffer.PutChar(c);    }   } catch (IOException e) {} } }

利用Java实现串口全双工通讯(5)

时间:2010-12-12

4.SerialExample

SerialExample是本类库所提供的一个例程。它所实现的功能是打开串口COM1,对其进行初始化,从串口读取信息对其进行处理后将处理结果发送到串口。

import serial.*; import java.io.*; /** * * This is an example of how to use the SerialBean.It opens COM1 and reads * six messages with different length form the serial port. * */ class SerialExample {   public static void main(String[] args)   {    //TO DO: Add your JAVA codes here    SerialBean SB = new SerialBean(1);    String Msg;      SB.Initialize();    for (int i = 5; i <= 10; i++)    {     Msg = SB.ReadPort(i);     SB.WritePort("Reply: " + Msg);    }    SB.ClosePort();   } }

5.编译与调试

本类库中使用了Java Communication API (javax.comm)。这是一个Java扩展类库,并不包括在标准的Java SDK当中。如果你尚未安装这个扩展类库的话,你应该从Sun公司的Java站点下载这个类库并将其安装在你的系统上。在所下载的包里面包括一个安装说明,如果你没有正确安装这个类库及其运行环境的话,运行这个程序的时候你会找不到串口。

正确安装Java Communication API并将上述程序编译通过以后,你可以按如下方法测试这个程序。如果你只有一台机器,你可以利用一条RS-232电缆将COM1和COM2连接起来,在COM1上运行SerialExample,在COM2上运行Windows提供的超级终端程序。如果你有两台机器的话,你可以利用一条RS-232电缆将两台机器的COM1(或者是COM2)连接起来,在一端运行例程,另外一端运行Windows提供的超级终端程序。如果有必要的

话,可以对SerialExample中所声明的串口进行相应改动。

本程序在Windows 2000 + Java SD

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号