|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
JAVA是一种可以撰写跨平台应用软件的面向对象的程序设计语言,由升阳(SunMicrosystems)公司的詹姆斯·高斯林(JamesGosling)等人于1990年代初开发。一个嵌进式体系一般必要经由过程串口与其主控体系举行全双工通信,比如一个流水线把持体系必要不休的承受从主控体系发送来的查询和把持信息,并将实行了局或查询了局发送回主控体系。本文先容了一个复杂的经由过程串话柄现全双工通信的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情况下编译经由过程并乐成运转。
首先第一点:jsp,servlet,javabean这些最基本的,嘿嘿,就算你是高手的话,在大行的企业级应用的话还是需要框架的,一个好的框架确实能构解决许多问题。 |
|