知识大全 利用Java实现串口全双工通讯
Posted 函数
篇首语:三人行,必有我师焉。择其善者而从之,其不善者而改之。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 利用Java实现串口全双工通讯相关的知识,希望对你有一定的参考价值。
利用Java实现串口全双工通讯 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
一个嵌入式系统通常需要通过串口与其主控系统进行全双工通讯 譬如一个流水线控制系统需要不断的接受从主控系统发送来的查询和控制信息 并将执行结果或查询结果发送回主控系统 本文介绍了一个简单的通过串口实现全双工通讯的Java类库 该类库大大的简化了对串口进行操作的过程 本类库主要包括 SerialBean java (与其他应用程序的接口) SerialBuffer java (用来保存从串口所接收数据的缓冲区) ReadSerial java (从串口读取数据的程序) 另外本类库还提供了一个例程SerialExample java 作为示范 在下面的内容中将逐 一对这几个部分进行详细介绍 SerialBean SerialBean是本类库与其他应用程序的接口 该类库中定义了SerialBean的构造方法以及初始化串口 从串口读取数据 往串口写入数据以及关闭串口的函数 具体介绍如下 public SerialBean(int PortID) 本函数构造一个指向特定串口的SerialBean 该串口由参数PortID所指定 PortID = 表示 PortID = 表示 由此类推 public int Initialize() 本函数初始化所指定的串口并返回初始化结果 如果初始化成功返回 否则返回 初始化的结果是该串口被SerialBean独占性使用 其参数被设置为 N 如果串口被成功初始化 则打开一个进程读取从串口传入的数据并将其保存在缓冲区中 public String ReadPort(int Length) 本函数从串口(缓冲区)中读取指定长度的一个字符串 参数Length指定所返回字符串的长度 public void WritePort(String Msg) 本函数向串口发送一个字符串 参数Msg是需要发送的字符串 public void ClosePort() 本函数停止串口检测进程并关闭串口 SerialBean的源代码如下 package serial; import java io *; import java util *; import m *; /** * * This bean provides some basic functions to implement full dulplex * information exchange through the srial port * */ public class SerialBean static String PortName; CommPortIdentifier portId; SerialPort serialPort; static OutputStream out; static InputStream in; SerialBuffer SB; ReadSerial RT; /** * * Constructor * * @param PortID the ID of the serial to be used for * for etc * */ public SerialBean(int PortID) PortName = + PortID; /** * * This function initialize the serial port for munication It starts a * thread which consistently monitors the serial port Any signal captured * from the serial port is stored into a buffer area * */ public int Initialize() int InitSuccess = ; int InitFail = ; try portId = CommPortIdentifier getPortIdentifier(PortName); try serialPort = (SerialPort) portId open( Serial_Communication ); catch (PortInUseException e) return InitFail; //Use InputStream in to read from the serial port and OutputStream //out to write to the serial port try in = serialPort getInputStream(); out = serialPort getOutputStream(); catch (IOException e) return InitFail; //Initialize the munication parameters to none try serialPort setSerialPortParams( SerialPort DATABITS_ SerialPort STOPBITS_ SerialPort PARITY_NONE); catch (UnsupportedCommOperationException e) return InitFail; catch (NoSuchPortException e) return InitFail; // when successfully open the serial port create a new serial buffer // then create a thread that consistently accepts ining signals from // the serial port Ining signals are stored in the serial buffer SB = new SerialBuffer(); RT = new ReadSerial(SB in); RT start(); // return success information return InitSuccess; /** * * This function returns a string with a certain length from the ining * messages * * @param Length The length of the string to be returned * */ public String ReadPort(int Length) String Msg; Msg = SB GetMsg(Length); return Msg; /** * * This function sends a message through the serial port * * @param Msg The string to be sent * */ public void WritePort(String Msg) int c; try for (int i = ; i < Msg.length(); i++) out.write(Msg.charAt(i)); catch (IOException e) /** * * This function closes the serial port in use. * */ public void ClosePort() RT.stop(); serialPort.close(); 2. SerialBuffer SerialBuffer是本类库中所定义的串口缓冲区,它定义了往该缓冲区中写入数据和从该缓冲区中读取数据所需要的函数。WINgwIt.CoM public synchronized String GetMsg(int Length) 本函数从串口(缓冲区)中读取指定长度的一个字符串。参数Length指定所返回字符串的长度。 public synchronized void PutChar(int c) 本函数望串口缓冲区中写入一个字符,参数c 是需要写入的字符。 在往缓冲区写入数据或者是从缓冲区读取数据的时候,必须保证数据的同步,因此GetMsg和PutChar函数均被声明为synchronized并在具体实现中采取措施实现的数据的同步。 SerialBuffer的源代码如下: package serial; /** * * This class implements the buffer area to store ining data from the serial * port. * */ public class SerialBuffer private String Content = ""; private String CurrentMsg, TempContent; private boolean available = false; private int LengthNeeded = 1; /** * * This function returns a string with a certain length from the ining * messages. * * @param Length The length of the string to be returned. * */ public synchronized String GetMsg(int Length) LengthNeeded = Length; notifyAll(); if (LengthNeeded > Content length()) available = false; while (available == false) try wait(); catch (InterruptedException e) CurrentMsg = Content substring( LengthNeeded); TempContent = Content substring(LengthNeeded); Content = TempContent; LengthNeeded = ; notifyAll(); 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 = ncat(d toString()); if (LengthNeeded < Content.length()) available = true; notifyAll(); 3. ReadSerial ReadSerial是一个进程,它不断的从指定的串口读取数据并将其存放到缓冲区中。 public ReadSerial(SerialBuffer SB, InputStream Port) 本函数构造一个ReadSerial进程,参数SB指定存放传入数据的缓冲区,参数Port指定从串口所接收的数据流。 public void run() ReadSerial进程的主函数,它不断的从指定的串口读取数据并将其存放到缓冲区中。 Re cha138/Article/program/Java/JSP/201311/19261相关参考
什么是半双工,什么是全双工,请详细解释一下全双工(FullDuplex)是指在发送数据的同时也能够接收数据,两者同步进行,这好像我们平时打电话一样,说话的同时也能够听到对方的声音。目前的网卡一般都支持
Java中利用管道实现线程间的通讯 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在Java语言
知识大全 51单片机串口通讯为什么给T1附值以后芯片就默认该值为波特率,而不需要其他设置
51单片机串口通讯为什么给T1附值以后芯片就默认该值为波特率,而不需要其他设置?是跟PCON或者SCON有关吗 以下文字资料是由(本站网www.cha138.com)小
Java串口通信总结 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 最近在研究一个东西要用到串口
编程技巧:Java串口通信简介 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 嵌入式系统或传感器
win7系统下如何开启网络卡的全双工开启步骤:1、开启“网路和共享中心”2、开启“更改介面卡设定”3、右键开启“本地连线”4、开启“属性”5、开启“配置”6、开启“高阶”7、找到“速度和双工”选项就可
知识大全 各位老师,为何在路由器中设置自动拨号模式就是签约网速,而选择100兆全双工就慢了。10兆半双工就更慢
各位老师,为何在路由器中设置自动拨号模式就是签约网速,而选择100兆全双工就慢了。10兆半双工就更慢家庭网络环境布线:1、有电信猫:电信猫----路由器wan口;路由器lan口----电脑;2、没得电
通过JAVA与串口(RS232)通信实例 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 最近了解
单片机串口通信的波特率有什么用两个串口之间通讯的速率,两个串口的波特率设置成一样才能互相发送和接收数据单片机串口通信的波特率如何计算教材上都有计算公式的,还可以用波特率计算软件来计算STC单片机下载入
网络适配器的连接速度和双工模式怎么调网速最快连接速度和双式模型里面,改成全双工100M的那个还有就是打开QOS数据包里面受限的20%带宽:(“开始”→“运行”中输入gpedit.msc(扩展名一定不能