|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
C#是不行的,比如说美国的航天飞船里就有java开发的程序以上是我的愚见,其实不管那种语言,你学好了,都能找到好的工作,使用Java完成串口全双工通信(投稿)
QingyeJiang(John)
SMTHID:qyjohn
E-mail:qjiang@tsinghua.edu
一个嵌进式体系一般必要经由过程串口与其主控体系举行全双工通信,比如一个流水线
把持体系必要不休的承受从主控体系发送来的查询和把持信息,并将实行了局或查
询了局发送回主控体系。本文先容了一个复杂的经由过程串话柄现全双工通信的Java类
库,该类库年夜年夜的简化了对串口举行操纵的历程。
本类库次要包含:SerialBean.java(与其他使用程序的接口),SerialBuffer.java
(用来保留从串口所吸收数据的缓冲区),ReadSerial.java(从串口读取数据的程序)。
别的本类库还供应了一个例程SerialExample.java作为树模。鄙人面的内容中将逐
一对这几个部分举行具体先容。
1.SerialBean
SerialBean是本类库与其他使用程序的接口。该类库中界说了SerialBean的机关方
法和初始化串口,从串口读取数据,往串口写进数据和封闭串口的函数。详细
先容以下:
publicSerialBean(intPortID)
本函数机关一个指向特定串口的SerialBean,该串口由参数PortID所指定。
PortID=1暗示COM1,PortID=2暗示COM2,由此类推。
publicintInitialize()
本函数初始化所指定的串口并前往初始化了局。假如初始化乐成前往1,否
则前往-1。初始化的了局是该串口被SerialBean独有性利用,其参数被设置
为9600,N,8,1。假如串口被乐成初始化,则翻开一个历程读取从串口授
进的数据并将其保留在缓冲区中。
publicStringReadPort(intLength)
本函数从串口(缓冲区)中读取指定长度的一个字符串。参数Length指定所返
回字符串的长度。
publicvoidWritePort(StringMsg)
本函数向串口发送一个字符串。参数Msg是必要发送的字符串。
publicvoidClosePort()
本函数中断串口检测历程并封闭串口。
SerialBean的源代码以下:
packageserial;
importjava.io.*;
importjava.util.*;
importjavax.comm.*;
/**
*
*Thisbeanprovidessomebasicfunctionstoimplementfulldulplex
*informationexchangethroughthesrialport.
*
*/
publicclassSerialBean
{
staticStringPortName;
CommPortIdentifierportId;
SerialPortserialPort;
staticOutputStreamout;
staticInputStreamin;
SerialBufferSB;
ReadSerialRT;
/**
*
*Constructor
*
*@paramPortIDtheIDoftheserialtobeused.1forCOM1,
*2forCOM2,etc.
*
*/
publicSerialBean(intPortID)
{
PortName="COM"+PortID;
}
/**
*
*Thisfunctioninitializetheserialportforcommunication.Itstartsa
*threadwhichconsistentlymonitorstheserialport.Anysignalcaptured
*fromtheserialportisstoredintoabufferarea.
*
*/
publicintInitialize()
{
intInitSuccess=1;
intInitFail=-1;
try
{
portId=CommPortIdentifier.getPortIdentifier(PortName);
try
{
serialPort=(SerialPort)
portId.open("Serial_Communication",2000);
}catch(PortInUseExceptione)
{
returnInitFail;
}
//UseInputStreamintoreadfromtheserialport,andOutputStream
//outtowritetotheserialport.
try
{
in=serialPort.getInputStream();
out=serialPort.getOutputStream();
}catch(IOExceptione)
{
returnInitFail;
}
//Initializethecommunicationparametersto9600,8,1,none.
try
{
serialPort.setSerialPortParams(9600,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
}catch(UnsupportedCommOperationExceptione)
{
returnInitFail;
}
}catch(NoSuchPortExceptione)
{
returnInitFail;
}
//whensuccessfullyopentheserialport,createanewserialbuffer,
//thencreateathreadthatconsistentlyacceptsincomingsignalsfrom
//theserialport.Incomingsignalsarestoredintheserialbuffer.
SB=newSerialBuffer();
RT=newReadSerial(SB,in);
RT.start();
//returnsuccessinformation
returnInitSuccess;
}
/**
*
*Thisfunctionreturnsastringwithacertainlengthfromtheincoming
*messages.
*
*@paramLengthThelengthofthestringtobereturned.
*
*/
publicStringReadPort(intLength)
{
StringMsg;
Msg=SB.GetMsg(Length);
returnMsg;
}
/**
*
*Thisfunctionsendsamessagethroughtheserialport.
*
*@paramMsgThestringtobesent.
*
*/
publicvoidWritePort(StringMsg)
{
intc;
try
{
for(inti=0;i<Msg.length();i++)
out.write(Msg.charAt(i));
}catch(IOExceptione){}
}
/**
*
*Thisfunctionclosestheserialportinuse.
*
*/
publicvoidClosePort()
{
RT.stop();
serialPort.close();
}
}
2.SerialBuffer
SerialBuffer是本类库中所界说的串口缓冲区,它界说了往该缓冲区中写进数据和
从该缓冲区中读取数据所必要的函数。
publicsynchronizedStringGetMsg(intLength)
本函数从串口(缓冲区)中读取指定长度的一个字符串。参数Length指定所
前往字符串的长度。
publicsynchronizedvoidPutChar(intc)
本函数看串口缓冲区中写进一个字符,参数c是必要写进的字符。
在往缓冲区写进数据大概是从缓冲区读取数据的时分,必需包管数据的同
步,因而GetMsg和PutChar函数均被声明为synchronized并在详细完成中采
取措施完成的数据的同步。
SerialBuffer的源代码以下:
packageserial;
/**
*
*Thisclassimplementsthebufferareatostoreincomingdatafromtheserial
*port.
*
*/
publicclassSerialBuffer
{
privateStringContent="";
privateStringCurrentMsg,TempContent;
privatebooleanavailable=false;
privateintLengthNeeded=1;
/**
*
*Thisfunctionreturnsastringwithacertainlengthfromtheincoming
*messages.
*
*@paramLengthThelengthofthestringtobereturned.
*
*/
publicsynchronizedStringGetMsg(intLength)
{
LengthNeeded=Length;
notifyAll();
if(LengthNeeded>Content.length())
{
available=false;
while(available==false)
{
try
{
wait();
}catch(InterruptedExceptione){}
}
}
CurrentMsg=Content.substring(0,LengthNeeded);
TempContent=Content.substring(LengthNeeded);
Content=TempContent;
LengthNeeded=1;
notifyAll();
returnCurrentMsg;
}
/**
*
*Thisfunctionstoresacharactercapturedfromtheserialporttothe
*bufferarea.
*
*@paramtThecharvalueofthecharactertobestored.
*
*/
publicsynchronizedvoidPutChar(intc)
{
Characterd=newCharacter((char)c);
Content=Content.concat(d.toString());
if(LengthNeeded<Content.length())
{
available=true;
}
notifyAll();
}
}
3.ReadSerial
ReadSerial是一个历程,它不休的从指定的串口读取数据并将其寄存到缓冲区中。
publicReadSerial(SerialBufferSB,InputStreamPort)
本函数机关一个ReadSerial历程,参数SB指定寄存传进数据的缓冲区,参
数Port指定从串口所吸收的数据流。
publicvoidrun()
ReadSerial历程的主函数,它不休的从指定的串口读取数据并将其寄存到
缓冲区中。
ReadSerial的源代码以下:
packageserial;
importjava.io.*;
/**
*
*Thisclassreadsmessagefromthespecificserialportandsave
*themessagetotheserialbuffer.
*
*/
publicclassReadSerialextendsThread
{
privateSerialBufferComBuffer;
privateInputStreamComPort;
/**
*
*Constructor
*
*@paramSBThebuffertosavetheincomingmessages.
*@paramPortTheInputStreamfromthespecificserialport.
*
*/
publicReadSerial(SerialBufferSB,InputStreamPort)
{
ComBuffer=SB;
ComPort=Port;
}
publicvoidrun()
{
intc;
try
{
while(true)
{
c=ComPort.read();
ComBuffer.PutChar(c);
}
}catch(IOExceptione){}
}
}
4.SerialExample
SerialExample是本类库所供应的一个例程。它所完成的功效是翻开串口COM1,对
其举行初始化,从串口读失信息对其举行处置后将处置了局发送到串口。
importserial.*;
importjava.io.*;
/**
*
*ThisisanexampleofhowtousetheSerialBean.ItopensCOM1andreads
*sixmessageswithdifferentlengthformtheserialport.
*
*/
classSerialExample
{
publicstaticvoidmain(String[]args)
{
//TODO:AddyourJAVAcodeshere
SerialBeanSB=newSerialBean(1);
StringMsg;
SB.Initialize();
for(inti=5;i<=10;i++)
{
Msg=SB.ReadPort(i);
SB.WritePort("Reply:"+Msg);
}
SB.ClosePort();
}
}
5.编译与调试
本类库中利用了JavaCommunicationAPI(javax.comm)。这是一个Java扩大类库,
其实不包含在尺度的JavaSDK傍边。假如你还没有安装这个扩大类库的话,你应当从Sun
公司的Java站点下载这个类库并将其安装在你的体系上。在所下载的包内里包含一个
安装申明,假如你没有准确安装这个类库及其运转情况的话,运转这个程序的时分你
会找不到串口。
准确安装JavaCommunicationAPI并将上述程序编译经由过程今后,你能够按以下办法测
试这个程序。假如你只要一台呆板,你能够使用一条RS-232电缆将COM1和COM2毗连起
来,在COM1上运转SerialExample,在COM2上运转Windows供应的超等终端程序。假如
你有两台呆板的话,你能够使用一条RS-232电缆将两台呆板的COM1(大概是COM2)毗连
起来,在一端运转例程,别的一端运转Windows供应的超等终端程序。假如有需要的
话,能够对SerialExample中所声明的串口举行响应修改。
本程序在Windows2000+JavaSDK1.3情况下编译经由过程并乐成运转。
有了这样一个呼声:让java代替C语言成为基本语言。这些足以说明java简单易学的这个优点。其次,java的功能强大,前面我也提到了,EJB3.0的推出使java成为了大型项目的首选。 |
|